2017-12-22 1 views
0

Linux Mint 17.03에 Docker를 설치하려고합니다. 나는 도커 website의 단계를 수행 할 때, 나는 단계까지 얻을 :Linux Mint에 Docker-CE를 설치하려고합니다. 17.03 - E : 패키지 docker-ce를 찾을 수 없습니다.

는 sudo apt-get을 설치 고정 표시기-CE

이것은 오류가 발생

"E를 : 패키지 고정 표시기-CE를 찾을 수 없습니다"

지금까지 수행

단계는 다음과 같습니다

sudo apt-get remove docker docker-engine docker.io 

sudo apt-get update 

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 \ $(lsb_release -cs) \ stable" 

sudo apt-get update 

sudo apt-get install docker-ce 

답변

0

나는 그것이 문서화 가치가 생각이 나는 아무 소용이 인터넷에서 찾을 수있는 모든 튜토리얼, 일이 있었다 만든 명령에 대해 다음과 후 :

sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ trusty \ stable" 

"trusty"로 $ (lsb_release -cs) 교체

관련 문제