System/ubuntu
[UBUNTU22.04]DOCKER 설치
Mr.Kang
2023. 10. 20. 00:33
1. 필요 패키지 설치
root~# apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common
2. GPG 키 추가
root~# curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
3. DOCKER Repository 추가
root~# add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
4. DOCKER 설치
root~# apt-get install docker-ce docker-ce-cli containerd.io
5. DOCKER 시스템 등록 및 상태확인
root~# systemctl enable docker
root~# systemctl status docker