1

我正在使用 Docker Compose 来启动一些容器,但我无法command正常工作。我想启动我的 Flask 服务器,但也为它设置了一个环境变量。这是我所做的:

web:
  command: INSTASONG_ENV=production python manage.py runserver

不幸的是,我收到此错误:

Cannot start container 2a413b1270b9faa5e0ffb8a70603ae25c48ff742e0d8476bed8153febcee185a: [8] System error: exec: "INSTASONG_ENV=production": executable file not found in $PATH

我怎样才能使这项工作?

4

1 回答 1

4

设置环境变量的设置可能不同,如图所示tests/fixtures/extends/common.yml

web:
  image: busybox
  command: /bin/true
  environment:
    - FOO=1
    - BAR=1

在你的情况下:

web:
  command: python manage.py runserver
  environment:
    - INSTASONG_ENV=production
于 2015-04-28T20:56:09.737 回答