• Waring处理
    Found orphan containers 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.

  • 如果一个文件夹中有多个.yml文件,那么每次运行其中一个yml就会出现警告有相同项目的其他孤立容器,这是因为Docker机制把文件夹名称作为默认项目名称,一个项目名称被多个yml文件使用就会发生这个警告

解决方案

  • 添加 -p自定义project项目名称
docker-compose -p project01 -f xxx.yml up -d