오늘은 우분투에 도커를 설치하는 방법에 대해 알아보겠습니다.
바라기로는 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/
'OS > Linux' 카테고리의 다른 글
[Linux] 서버 시간 한국 표준시로 변경하기 (0) | 2024.07.18 |
---|---|
[Linux] 특정 단어가 파일명에 포함된 파일 찾기, find (0) | 2023.12.29 |
[Linux] 리눅스 특정 폴더 찾기, find (0) | 2023.12.29 |
[linux] 리눅스 명령어 grep 사용법 정리 (0) | 2023.11.17 |
[Linux] AWS CLI 설치하는 방법 (0) | 2023.10.25 |
[Linux] 도커 permission denied while trying to connect to the Docker daemon socket at unix 에러 해결 방법 (0) | 2023.10.23 |
[Linux] ImportError: libgthread-2.0.so.0: cannot open shared object file: No such file or directory 에러 발생시 해결법 (0) | 2023.10.22 |
[Linux] 파일 다운로드 받을 때 사용하는 wget 명령어 (0) | 2023.10.05 |