상세 컨텐츠

본문 제목

Docker 설치 및 세팅(CentOS 7)

Ops/Kubernetes

by 크리두 2020. 1. 7. 14:38

본문

반응형

 


Docker 이전 버전들이 있다면 삭제해주는게 좋다.

가끔이긴 하지만 이미 설치되어 있는거 때문에 설치가 안되는 경우가 더러 있다.

 

$ sudo yum remove docker \
                  docker-client \
                  docker-client-latest \
                  docker-common \
                  docker-latest \
                  docker-latest-logrotate \
                  docker-logrotate \
                  docker-engine

 

설치 전 필요한 패키지 설치를 먼저 한다.

$ sudo yum install -y yum-utils \
  device-mapper-persistent-data \
  lvm2

 

repositiory 설정

$ sudo yum-config-manager \
    --add-repo \
    https://download.docker.com/linux/centos/docker-ce.repo

선택 사항으로 nightly나 test 버전 필요하신 분들은 사이트 참조하시면 됩니다.

 

 

패키지 설치

$ sudo yum install docker-ce docker-ce-cli containerd.io

--> 특정 버전 설치

$ yum list docker-ce --showduplicates | sort -r

 

 * updates: mirror.kakao.com
Loading mirror speeds from cached hostfile
Loaded plugins: fastestmirror
Installed Packages
 * extras: mirror.kakao.com
docker-ce.x86_64            3:19.03.5-3.el7                    docker-ce-stable 
docker-ce.x86_64            3:19.03.5-3.el7                    @docker-ce-stable
docker-ce.x86_64            3:19.03.4-3.el7                    docker-ce-stable 
docker-ce.x86_64            3:19.03.3-3.el7                    docker-ce-stable 
docker-ce.x86_64            3:19.03.2-3.el7                    docker-ce-stable 
docker-ce.x86_64            3:19.03.1-3.el7                    docker-ce-stable

.

.

.

$ sudo yum install docker-ce- docker-ce-cli- containerd.io

 

도커 시작

$ sudo systemctl start docker

 

hell-world 도커 실행

$ sudo docker run hello-world

 

 

Ref. https://docs.docker.com/

 

Docker Documentation

Get started with Docker Try our multi-part walkthrough that covers writing your first app, data storage, networking, and swarms, and ends with your app running on production servers in the...

docs.docker.com

 

반응형

'Ops > Kubernetes' 카테고리의 다른 글

RBAC Authorization  (0) 2021.10.20
K8S ingress에 대하여  (0) 2021.06.24
Private 도커 Registry 설치 및 설정  (0) 2020.11.10
K8S Master Clustering 설치 및 구성  (0) 2020.05.28
K8S node Internal IP 변경  (0) 2020.04.23

관련글 더보기

댓글 영역