我在 Ubuntu 20.04 上运行 docker-compose 1.25.0。我的配置文件看起来像
version: "3"
services:
foo:
image: some_image
init: true
...
当我跑步时docker-compose up
,我得到
The compose file './docker-compose.yaml' is invalid because:
Unsupported config option for services.foo: 'init'
根据文档,该init
选项是在 2.2 版本文件格式中添加的。据此, Compose 版本 1.13.0+ 支持该文件格式。