본문 바로가기
  • 오늘도 한걸음. 수고많았어요.^^
  • 조금씩 꾸준히 오래 가자.ㅎ
IT기술/CI CD

[docker] docker-compose docker compose 차이, 버전의 차이

by 미노드 2024. 2. 5.

도커를 공부하다 보니 docker compose 라는게 있고 docker-compose 라는게 있는데, 이게 비슷하면서도 완전히 같다고는 생각지 않게되어 한번 포스팅을 하게 되었습니다.

구분하고 사용하는 것이 꼭 필요할까 생각은 되지만, 결과적으로는 구분하는게 나아보입니다.

1. docker compose 확인

2. docker-compose 확인

docker-compose는 설치할때 포함되지 않았었는데, 추가로 설치는 가능하나, 버전을 보면 1.25.0-1 로 확인됩니다.

stackoverflow의 글에서도 이 내용이 혼용되어 사용되는 듯 하여 구분을 해보려 하는데 
docker-compose가 V1 버전, docker compose가 docker의 plugin개념으로 compose를 지원하는 V2 버전 으로 이해하시면 되겠습니다.
2023년 7월 부터 v2를 공식 지원하는 것으로 확인됩니다.

https://docs.docker.com/compose/#installing-compose-v2

 

Docker Compose overview

Learn how to use Docker Compose to define and run multi-container applications with this detailed introduction to the tool.

docs.docker.com

 

혹여나 v1을 쓰시려면 apt install docker-compose 를 하면 되긴한데,
v2를 설치하려면 아래의 명령을 참고하시면 됩니다.

$ sudo apt-get update
$ sudo apt-get install docker-compose-plugin

https://docs.docker.com/compose/install/linux/

 

Install the Compose plugin

Download and install Docker Compose on Linux with this step-by-step handbook. This plugin can be installed manually or by using a repository.

docs.docker.com

 

스택오버플로우 사이트에도 비슷한 글이 있어 공유해봅니다.

https://stackoverflow.com/questions/66514436/difference-between-docker-compose-and-docker-compose

 

Difference between "docker compose" and "docker-compose"

Note: this question was created BEFORE docker docs were updated (it was the reason they were updated - see this answer). Please do not post answers pointing out the docs on the differences :-) I h...

stackoverflow.com