Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- mongo 설치
- ubuntu
- php
- live drawin
- pypi 배포
- vscode python
- ubuntu ffmpeg
- ubuntu setting
- aws s3 delete
- flask 시작
- s3
- ubuntu docker
- aws s3
- mongodb 명령어
- hls 연동
- MySQL
- jstl list
- AWS
- mongo 명령어
- ubuntu error
- php pdf
- python anaconda
- php pdf convert
- vscode anaconda
- 우분투 세팅
- php 암호화
- flask 세팅
- conda lib
- php encryption
- ubuntu nginx
Archives
- Today
- Total
인생을 바꾸는 기록
docker 세팅(in ubuntu) 본문
Docker repository로 설치
오래된 버전 삭제
$ sudo apt-get remove docker docker-engine docker.io containerd runc
docker 저장소 설치
$ sudo apt-get update
$ sudo apt-get 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"
docker engine 설치
$ sudo apt-get update
$ sudo apt-get install docker-ce docker-ce-cli containerd.io
특정 버전의 Docker engine 설치
- 저장소에서 사용 가능한 버전 확인
$ apt-cache madison docker-ce
- 원하는 버전으로 설치
$ sudo apt-get install docker-ce=<VERSION_STRING> docker-ce-cli=<VERSION_STRING> containerd.io
docker 실행 확인하기
$ sudo docker run hello-world
docker engine 제거
- 패키지 제거
$ sudo apt-get purge docker-ce docker-ce-cli containerd.io
- 컨테이너 볼륨 제거
$ sudo rm -rf /var/lib/docker
repository로 설치시 docker-engine 업그레이드 방법
$ sudo apt-get update
업데이트후 설치 지침대로 다시 설치 (라고 공식 홈페이지에 나와있음)
패키지 파일로 설치
https://download.docker.com/linux/ubuntu/dists/ 에서 우분투용 파일(.deb) 설치
패키지 설치
$ sudo dpkg -i /path/to/package.deb
설치 확인
$ sudo docker run hello-world
참고 url
'ubuntu' 카테고리의 다른 글
우분투 초기세팅 (0) | 2021.02.03 |
---|---|
우분투 에러 (0) | 2021.02.03 |
ubuntu nginx 설치, hls 연동 (0) | 2021.02.03 |
ffmpeg 설치 (in ubuntu) (0) | 2021.02.03 |