OS/Linux
[Linux] 우분투에 docker 설치하는 방법
bskyvision.com
2023. 10. 26. 19:13
오늘은 우분투에 도커를 설치하는 방법에 대해 알아보겠습니다.
바라기로는 sudo apt-get install docker 이런 식으로 한 방에 설치되기 원했지만, 애석하게도 실상은 그렇지 않았습니다.
아래 단계를 하나하나 잘 따라줘야 합니다.
1. 우분투 패키지 업데이트
sudo apt-get update
2. HTTP 패키지 설치
sudo apt-get 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 -
참고로 GPG 키는 "GNU Privacy Guard"의 약자로, 데이터 암호화 및 디지털 서명을 위한 오픈 소스 소프트웨어 도구의 키를 가리킵니다.
4. Docker 공식 apt 저장소 추가
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
5. 우분투 패키지 업데이트
sudo apt-get update
6. Docker 설치
sudo apt-get install docker-ce docker-ce-cli containerd.io
7. Docker 실행 상태 확인
sudo systemctl status docker
참고자료
[1] https://dongle94.github.io/docker/docker-ubuntu-install/