1. 기존 패키지 업데이트
sudo apt update
2. 필수 패키지 설치
sudo apt install apt-transport-https ca-certificates curl software-properties-common
3. Docker GPG 키 추가
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
4. Docker 저장소 추가
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
5. 패키지 업데이트 및 Docker 설치
sudo apt update
sudo apt install docker-ce
6. Docker 설치 확인
sudo systemctl status docker
7. (선택 사항) 일반 사용자로 Docker 사용(로그아웃하고 다시 로그인해야 변경 사항이 적용됨.)
sudo usermod -aG docker ${USER}
8. Docker 테스트
docker run hello-world
728x90
댓글