CentOS7.5环境下Docker环境搭建
1. 安装wget工具:
yum install wget -y
2. 使用wget工具从docker官网下载yum源:
wget -P /etc/yum.repos.d/ https://download.docker.com/linux/centos/docker-ce.repo
3. 更新yum源缓存
yum makecache fast
4. 安装Docker
yum -y install docker-ce
5. 启动Docker以及设置开机启动
systemctl start docker
systemctl enable docker
本文来自博客园,作者:明明改变世界,转载请注明原文链接:https://www.cnblogs.com/mmworld/p/16012231.html