본문 바로가기
App Programming/Docker

[Docker] Package 'docker-ce' has no installation candidate

by goatlab 2024. 6. 19.
728x90
반응형
SMALL

Package 'docker-ce' has no installation candidate

 

 

우분투 환경에서 docker 커맨드를 찾지 못하는 경우에 다음 명령어를 실행한다.

 

$ 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
sudo docker run hello-world

728x90
반응형
LIST

'App Programming > Docker' 카테고리의 다른 글

[Docker] ubuntu 파일 복사  (0) 2024.08.14
[Docker] Attach (컨테이너 접속)  (0) 2024.05.13
[Docker] 명령어  (0) 2023.02.13
[Docker] Dockerfile  (0) 2023.02.13
[Docker] 컨테이너 (Container)  (0) 2023.02.13