우분투 19.04 (디스코)
sudo apt install apt-transport-https ca-certificates curl software-properties-common
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 disco stable"
우분투 18.10 (우주)
sudo apt install apt-transport-https ca-certificates curl software-properties-common
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 bionic test"
우분투 18.04 (바이오닉)
sudo apt install apt-transport-https ca-certificates curl software-properties-common
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 bionic stable"
우분투 17.10
docker-ce
패키지는 공식 도커 (Ubutu Artful) 저장소에서 사용할 수 있으며 다음 명령을 사용하여 설치합니다.
sudo apt install apt-transport-https ca-certificates curl software-properties-common
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 artful stable"
우분투 16.04
docker-ce
다음과 같이 Ubuntu 16.04에 설치할 수 있습니다 .
sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
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 xenial stable"
다음을 실행하십시오.
apt-cache search docker-ce
샘플 출력 :
docker-ce - Docker: the open-source application container engine
설치 docker-ce
:
sudo apt install docker-ce
apt-get update
repo를 추가 한 후에 실행 했습니까 ?