세모튜브
Ubuntu : docker 설치 본문
설치 버젼 => 버젼확인 : $ cat /etc/*release*
- Ubuntu Groovy 20.10
- Ubuntu Focal 20.04 (LTS)
- Ubuntu Bionic 18.04 (LTS)
- Ubuntu Xenial 16.04 (LTS)
이전 버전 삭제
$ sudo apt-get remove docker docker-engine docker.io containerd runc
repository 설치
$ sudo apt update
$ sudo apt -y install apt-transport-https ca-certificates curl gnupg-agent software-properties-common
Docker의 공식 GPG 키를 추가
$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
(생략가능) 키가 있는지 확인.
$ sudo apt-key fingerprint 0EBFCD88
repository(저장소) 설정
$ sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
도커 설치
$ sudo apt update
$ sudo apt -y install docker-ce docker-ce-cli containerd.io
사용가능한 repository(저장소) 버젼 확인
$ apt-cache madison docker-ce
지정 버전을 설치합니다 (예 : 5:20.10.2~3-0~ubuntu-groovy)
$ sudo apt-get install docker-ce=5:20.10.2~3-0~ubuntu-groovy docker-ce-cli=5:20.10.2~3-0~ubuntu-groovy containerd.io
재부팅
$ sudo reboot
서비스 활성화 확인
$ sudo systemctl status docker
확인
$ sudo docker run hello-world
'설치' 카테고리의 다른 글
리눅스 : 화면 녹화프로그램 : kazam (0) | 2021.03.05 |
---|---|
맥 : opencv환경( 파이참 <=> 아나콘다 <=> 쥬피터 ) 생성 (0) | 2021.01.11 |
Ubuntu : Enable ssh (0) | 2021.01.08 |
PC : Ubuntu 설치 (0) | 2021.01.08 |
맥 : 아나콘다 : jupyter-notebook 설치 (0) | 2021.01.06 |