1. 레포지토리 업데이트, 필요한 패키지 설치
sudo apt-get update
sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
gnupg \
lsb-release
2. Docker GPG key 추가
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
3. Docker 레포지토리 추가
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable"
위 명령어에서 focal은 Ubuntu 20.04의 코드네임 -> 우분투 버전에 따라서 코드명을 바꿔야 함 (18.04는 bionic 사용)
4. 레포지토리 업데이트
sudo apt-get update
5. Docker 설치
sudo apt-get install docker-ce docker-ce-cli containerd.io
6. Docker 설치 (버전) 확인
sudo docker version
'DKE > Kubernetes' 카테고리의 다른 글
[Kubernetes] local-path-storage 설치하기 / 2023.06.15 (0) | 2023.06.15 |
---|---|
[Kubeflow] 계정(User) 추가하기 / 2023.06.14 (0) | 2023.06.14 |
[Kubeflow] ERROR [403] poddefaults.kubeflow.org is forbidden / 2023.06.14 (0) | 2023.06.14 |
Kubeflow 설치하기 (Ubuntu 20.04) / 2023.06.09 (6) | 2023.06.09 |
Kubernetes 설치하기 (Ubuntu 20.04) / 2023.06.06 (0) | 2023.06.06 |