错误如下:

# docker stack deploy -c  text.yml  text
network "text_network" is declared as external,
but could not be found. 
You need to create a swarm-scoped network before the stack is deployed

原因:
1、swarm集群中这个网络不存在,
2、可能是yml文件有问题。新建集群服务的时候没成功创建网络
3、可能集群中网络被删除
4、可能你是部署的单个docker应用,但是用到了swarm网络(这种情况建议不用swarm网络)

解决:新建网路

docker network create --driver overlay  text_network
Logo

权威|前沿|技术|干货|国内首个API全生命周期开发者社区

更多推荐