kubernets

[CentOS] Docker 설치

IT공부 2023. 2. 21. 12:29
반응형

CentOS

- 사전 설치 

yum -y update
yum install -y yum-utils

# docker repository  시스템 추가
yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
yum-config-manager --enable docker-ce-nightly

# docker engine install
yum -y install docker-ce docker-ce-cli containerd.io

# 서비스 기동 및 등록
systemctl start docker
systemctl enable docker 

# 서비스 확인
systemctl status docker

- docker engine 설치

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

 

- install 에러(podman, buildah) 

CentOS8 에서는 podman, buildah가 사전에 설치되어 있어서 삭제 후 도커를 설치해야지 정상적으로 설치가 진행된다.

docker 설치 시 podman buildah 에러

dnf -y remove podman buildah 

yum -y remove podman buildah

docker 정상 설치 확인

 

'kubernets' 카테고리의 다른 글

[kubenetes] worker노드 삭제 후 다시 조인  (0) 2023.03.06
[k8s] TLS certificate errors  (0) 2023.02.21
[Ubuntu]Docker 설치  (0) 2023.02.16
[Ubuntu] kubernetes 설치  (0) 2023.02.16