docker 部署问题 "Compose does not support 'deploy

2019-08-11 15:09发布

问题:

使用 docker-compose up 命令部署时出现下面的警告

WARNING: Some services (web) use the 'deploy' key, which will be ignored. Compose does not support 'deploy' configuration - use `docker stack deploy` to deploy to a swarm.

请问如何解决?

回答1:

加上 "--compatibility" 参数就能解决

docker-compose --compatibility up


标签: docker