如何禁用docker swarm模式?

前端之家收集整理的这篇文章主要介绍了如何禁用docker swarm模式?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我已经启用了docker swarm进行本地测试.现在,每当尝试使用docker-compose进行部署时,我都会看到以下警告:

WARNING: The Docker Engine you’re using is running in swarm mode.

Compose does not use swarm mode to deploy services to multiple nodes
in a swarm. All containers will be scheduled on the current node.

To deploy your application across the swarm,use docker stack deploy.

如何禁用docker swarm模式?

最佳答案
当您希望工作节点从群中离开时使用docker swarm leave,而docker swarm请假–force用于管理器节点离开群.

猜你在找的Docker相关文章