报错展示
Creating network "net-10.9.0.0" with the default driver
WARNING: Found orphan containers (server-4-10.9.0.8, server-3-10.9.0.7, server-1-10.9.0.5, server-2-10.9.0.6) for this project. If you removed or renamed this service in your compose file, you can run this command with the --remove-orphans flag to clean it up.
报错分析
这个警告信息提示您,在当前项目中发现了一些孤立的容器 (server-4-10.9.0.8, server-3-10.9.0.7, server-1-10.9.0.5, server-2-10.9.0.6)。这些容器可能是由于更改了 docker-compose.yml 文件中的服务名称或删除了一些服务而遗留下来的。
解决方案
如果这些孤立的容器不再需要,可以使用以下命令来清理它们:
docker-compose up --remove-orphans
这个命令会启动服务,同时移除所有与当前 docker-compose.yml 文件中未关联的孤立容器。