Ubuntu에서 Docker 설치

2024. 7. 27. 21:41Error Solve

반응형

1. 시스템에 설치 가능한 최신 패키지 정보 업데이트

sudo apt-get update

 

2. Docker 설치에 필요한 패키지 설치

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

 

3. Docker의 GPG키를 다운로드 후 APT 추가

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. 추가된 Docker 저장소 포함 후 APT 패키지 인덱스를 업데이트

sudo apt-get update

 

6. Docker 설치

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

 

7. 설치 후 Docker 현재 상태 확인

sudo systemctl status docker

 

 

'Error Solve' 카테고리의 다른 글

Ubuntu 환경에 miniconda 설치  (0) 2024.07.27
Ubuntu deb 파일 설치  (0) 2024.07.02
Docker desktop - Unexpected WSL error  (0) 2024.06.16