혹시만약 우분투 16.04에서 docker-ce 설치시

 

Package 'docker-ce' has no installation candidate

 

에러가 나온다면 아래 명령어를 실행해보는걸 추천한다.

 

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 를 설치했다.

 

 

https://unix.stackexchange.com/questions/363048/unable-to-locate-package-docker-ce-on-a-64bit-ubuntu

 

Unable to locate package `docker-ce` on a 64bit ubuntu

I'm trying to install Docker on a Ubuntu 64 machine following the official installation guide. Sadly Ubuntu seems it is not able to locate the docker-ce package. Any idea to fix it or at least to...

unix.stackexchange.com

 

+ Recent posts