Docker - 安装 docker

1. 配置依赖环境

yum -y install yum-utils device-mapper-persistent-data lvm2

2. 配置镜像源

yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo

3. 安装

yum makecache fast
yum -y install docker-ce

4. 启动 docker

systemctl start docker  # 启动
systemctl enable docker # 开机自启
docker version          # 查看版本
上一篇:docker介绍


下一篇:记录下在CentOS7中安装Docker CE