Install Compose on Linux
On Linux, you can download the Docker Compose binary from the Compose repository release page on GitHub. Follow the instructions from the link, which involve running the curl command in your terminal to download the binaries. These step-by-step instructions are also included below.
Linux에서는 GitHub의 Compose 리포지토리 릴리스 페이지에서 Docker Compose 바이너리를 다운로드할 수 있습니다. 터미널에서 curl 명령을 실행하여 바이너리를 다운로드하는 것과 관련된 링크의 지침을 따르십시오. 이러한 단계별 지침도 아래에 포함되어 있습니다.
다음 명령을 실행하여 Docker Compose의 안정적인 릴리스를 다운로드합니다.
$ sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
바이너리에 실행 권한을 적용합니다.
sudo chmod +x /usr/local/bin/docker-compose
설치 버전을 확인합니다.
$ docker-compose --version
docker-compose version 1.29.2, build 5becea4c
'Docker' 카테고리의 다른 글
Install Docker Engine on CentOS (0) | 2022.04.18 |
---|---|
Run the Docker daemon as a non-root user (Rootless mode) (0) | 2022.04.18 |
Docker Image 만들기 (0) | 2022.02.22 |
podman Error Message ERRO[0000] (0) | 2022.01.13 |
Docker Compose란 (1) | 2022.01.07 |