Installation
Docker Compose relies on Docker Engine. So before installing it make sure you have Docker Engine installed on your system.
On desktop systems like Docker Desktop for Mac and Windows, Docker Compose is included as part of those desktop installs. You don’t need to install it manually.
On Linux systems, you’ll need to
- Install Docker Engine
- Run the following command to download the current stable release of 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
3. Apply executable permissions to the binary:
sudo chmod +x /usr/local/bin/docker-compose
Now test the installation using the following command
docker-compose --version
'Linux' 카테고리의 다른 글
git config setting / store credential (0) | 2023.09.23 |
---|---|
[Linux] 비밀번호 없이 SSH 원격 접속하기 (PEM Key 생성) (0) | 2023.08.29 |
Linux - df, du 명령어 정리 (파일, 디스크 용량 확인) (0) | 2023.08.29 |
macOS: 맥에서 SSH 키 생성하고 사용하기 (0) | 2023.08.13 |
S3 CORS 헤더 관련 이슈 해결방법 (html2canvas, lottie) (0) | 2023.07.24 |