centos8 install docker

182 阅读1分钟

download docker-ce repo

curl https://download.docker.com/linux/centos/docker-ce.repo -o /etc/yum.repos.d/docker-ce.repo

install dependencey

yum install https://download.docker.com/linux/fedora/30/x86_64/stable/Packages/containerd.io-1.2.6-3.3.fc30.x86_64.rpm

install docker

yum -y install docker-ce

start

systemctl enable docker
systemctl start docker