본문 바로가기
개발/Docker

우분투(Ubuntu) 도커(Docker) 설치법

by 백륨 2025. 6. 18.

1. 패키지 업데이트

sudo apt update


2. 필요한 패키지 설치

sudo apt install apt-transport-https ca-certificates curl gnupg-agent software-properties-common


3. Docker 공식 GPG키 추가

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -


4. Docker 공식 apt 저장소 추가

sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"


5. 시스템 패키지 재 업데이트

sudo apt update


6. Docker 설치

sudo apt install docker-ce docker-ce-cli containerd.io


7. Docker 설치 확인

sudo systemctl status docker

 

 

주요 패키지는 설치 후 재부팅 한 번 해주는 게 좋다.

'개발 > Docker' 카테고리의 다른 글

일반 계정에 도커 사용 권한 주기  (0) 2025.07.16
윈도우 도커 가상 디스크 용량 줄이기  (0) 2025.06.18