我使用docker run传递了两个env变量:
docker run -d --name foobar -e STAGE=testing -e STAGE_URL=http://...
并且dockerfile启动了一个启动几个进程的主管:
CMD ["/usr/bin/supervisord", "--configuration", "/etc/supervisor/conf.d/supervisord.conf"]
在supervisord.conf
我尝试阅读变量:
[program:build]
priority=1
autorestart=false
directory=/app/foobar
command=grunt build --force --stage ${STAGE} --stage-url ${STAGE_URL}
我也试过
$STAGE
和
%(STAGE)s
但是STAGE永远不会被视为变量。它永远不会被实际内容所取代。相反,它被视为一个简单的字符串。这导致:
--stage STAGE --stage-url STAGE_URL
而不是
--stage testing --stage-url http://...
这甚至可能我正在做什么?主管文档不清楚这个主题。有什么想法吗?