2023년 11월 4일 토요일

Ubuntu docker, Package 'docker-ce' has no installation candidate

Ubuntu docker

아래 명령어를 입력하여 리눅스를 업데이트해줍니다.

sudo apt-get update
sudo apt-get upgrade


도커를 설치합니다.

sudo apt install docker-ce


docker-ce 패키지를 사용할 수 없습니다.
'docker-ce' 패키지는 설치할 수 있는 후보가 없습니다.


위와 같은 오류시 조치 방법

$ 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



댓글 없음:

댓글 쓰기