본문 바로가기
인프라/Docker&K8S

우분투 도커설치 하기(ubuntu docker 설치)

by IT맥구리나스 2022. 3. 6.

💡 사전 필수 패키지 설치

sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common

 

💡 안전한 통신을 위한 GPG key 인증

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"

 

💡 도커 설치

sudo apt-get update && sudo apt-get install docker-ce docker-ce-cli containerd.io

 

 

반응형

댓글