Skip to content

Ubuntu Server에 Docker Compose 설치하기

Published: at 오후 06:28

Table of contents

Open Table of contents

들어가며

Ubuntu Server에 Docker Engine 설치하기.에서 Ubuntu Server에 Docker Engine을 설치했다.
이제 Docker Compose를 설치하자.

zsh 명령어

# apt repository update
sudo apt-get update -y
# donwload and install
sudo apt-get install -y docker-compose-plugin
# verify the package
docker compose version
# outputs: Docker Compose version v2.21.0

$USER docker group에 추가 (vscode devconatiner 사용을 하기 위해)

하기 명령어를 입력하면, 이제 sudo를 붙이지 않아도 docker 명령어를 사용할 수 있다.

sudo usermod -aG docker $USER

참고 문서