docker-compose
是否可以模仿以下内容?
.env
文件:
...
if [ -f "another.env" ]; then
. ./another.env
fi
....
我没有错误,只是没有任何反应。
答案 0 :(得分:0)
试试env_file
部分:
version '3.6'
your-service:
env_file: ./another.env
有关详细信息,请查看docker-compose environment conf doc