Profile picture

[Docker-Compose] Found orphan containers for this project

JaehyoJJAng2023년 06월 11일

원인

WARN[0000] Found orphan containers ([GP_mc_forge_1.20.1 portainer portainer-agent]) 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.

도커 컴포즈를 사용하여 여러 개의 프로젝트를 관리할 시 위와 같은 에러가 발생하는데
나의 경우 같은 디렉토리 내에 2개 이상의 프로젝트를 각각 다른 docker-compose.yaml 파일로 올려서 발생한 오류였다.


-p 옵션을 사용하여 프로젝트명을 지정하던지 환경 변수로 COMPOSE_PROJECT_NAME 값을 다르게 주면 해결된다.


Ref

https://stackoverflow.com/questions/50947938/docker-compose-orphan-containers-warning


Loading script...