Ubuntu 16.04 LTS 등 이전 버전의 OS, MinOS 등 Ubuntu를 BaseOS로 하고 있는 아류 OS에서도 정상 작동 확인하였음.
1. 의존성 및 필수 패키지 설치
sudo apt-get update -y && sudo apt-get upgrade -y
sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common
2. Docker 공식 GPG 키 추가
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
3. Docker 설치
sudo apt-get update -y
sudo apt-get install docker-ce docker-ce-cli containerd.io
sudo systemctl restart docker
설치 확인 또는 버전 확인이 필요한 경우,
1) apt-cache show docker | grep Version
2) docker --version
'TroubleShootings > 삽질 예방 접종 센터' 카테고리의 다른 글
[Windows] 해결 방법 - 프로시저 시작 지점 EventSetInformation을(를) DLL ADVAPI32.dll에서 찾을 수 없습니다. (0) | 2023.11.14 |
---|---|
[Windows Error] Visual Studio (C++) 2015 재배포 페키지 0x80240017 오류 (0) | 2023.11.13 |
[Elastic] - Ubuntu 23.04 LTS ELK 설치 방법 (0) | 2023.11.10 |
Windows Server Product/Serial Key (0) | 2023.11.10 |
VMware 와 WSL 충돌하는 경우 해결 방법 (0) | 2023.11.07 |