image
-
EC2 - Ubuntu Docker 설치하기 [4]AWS 2021. 1. 26. 23:53
1. apt 업데이트, 패키지 설치 sudo apt-get update sudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ gnupg-agent \ software-properties-common 2. GPG key 등록 curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - 3. repository에 추가 sudo add-apt-repository \ "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ $(lsb_release -cs) \ stable" 4. docker 설치하기 apt-get..