centos7 安装 docker

详细内容可以翻阅官网

更新 yum

yum update -y

设置存储库

yum install -y yum-utils
yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo

安装 Docker 引擎

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

启动,并加入开机启动

systemctl start docker
systemctl enable docker

类似文章