【问题处理】Error response from daemon: Pool overlaps with other one on this address space

文章目录

问题详情

周末在升级服务时,执行docker-compose up -d执行启动命令后,报出以下错误

Error response from daemon: Pool overlaps with other one on this address space

这是由于已经有容器占用了这个网段,需要修改yaml,如果占用的容器是已经不用的那么可以删除

解决方法

查看当前容器网络

docker network ls

删除网络

docker network rm <NETWORK ID or Name>

猜你喜欢

转载自blog.csdn.net/tootsy_you/article/details/129243154
今日推荐