본문 바로가기

DevOps/Docker

ubuntu docker 설치시 Package 'docker-ce' has no installation candidate 해결

728x90

오랜만에 다른 서버에 도커를 설치할 일이 생겼는데 새 서버다 보니 이런 오류를 맞이했습니다 허허

 

Package 'docker-ce' has no installation candidate

docker-ce 패키지를 사용할 수 없습니다. 하지만 다른 패키지가 참조하고 있습니다

 

 

공식홈페이지에 말한대로 그냥 apt install 로 하기 전에 다음처럼 진행해줍시다.

 

$ sudo apt-get update
$ sudo apt-get install \
   ca-certificates \
   curl \
   gnupg \
   lsb-release
   
$ 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"
$ apt-get update
$ sudo apt-get install docker-ce docker-ce-cli containerd.io

 

그럼 고생하십쇼

반응형