找不到用于配置选项的docker卷

时间:2019-06-12 10:09:30

标签: docker

我正在尝试运行此docker命令

docker run --rm --name lighthouse -it \
  -v $PWD/test-results/lighthouse:/home/chrome/reports \
  -v $PWD/lighthouse:/lighthouse \
  --cap-add=SYS_ADMIN femtopixel/google-lighthouse \
  --config-path=/lighthouse/config/custom-config.js \
  $full_url \
  --output html \
  --output json

但是它并没有采用--config-path参数,因此我将卷映射为错误。

我正在尝试创建一个名为lighthouse的卷,但出现此错误:

  

/ usr / bin / entrypoint:11:执行:   --config-path = / lighthouse / config / custom-config.js:找不到

1 个答案:

答案 0 :(得分:1)

您应该将url作为我认为的第一个参数发送

docker run --rm --name lighthouse -it \
  -v $PWD/test-results/lighthouse:/home/chrome/reports \
  -v $PWD/lighthouse:/lighthouse \
  --cap-add=SYS_ADMIN femtopixel/google-lighthouse \
  $full_url \
  --config-path=/lighthouse/config/custom-config.js \
  --output html \
  --output json