给定以下撰写文件:
version: '3.6'
services:
hello-world:
image: hello-world
environment:
- test:test
如果我使用 部署它docker stack deploy -c docker-compose.yml test
,则修改 compose 文件如下:
services:
hello-world:
image: hello-world
environment:
- test:test
- test2:test2
现在,如果我运行,docker service inspect test_hello-world
我会在任务模板中看到以下内容:
"Env": [
"test:test"
],
我可以使用命令来获取从撰写文件添加的第二个环境变量(test2)吗?