1.Linux安装

要关闭selinux,要不然后面挂载磁盘有问题
setenforce 0
sed -i ‘s/^SELINUX=.*/SELINUX=disabled/‘ /etc/selinux/config

1)安装

yum -y install docker

2)启动

systemctl start docker

3)开机自启动

systemctl enable docker

2.设置国内镜像

修改文件配置(没有则创建)
vim /etc/docker/daemon.json
修改以下内容
{
“registry-mirrors”: [“http://hub-mirror.c.163.com“]
}
其他地址参考
https://registry.docker-cn.com
http://hub-mirror.c.163.com
https://3laho3y3.mirror.aliyuncs.com
http://f1361db2.m.daocloud.io
https://mirror.ccs.tencentyun.com

保存后重启

systemctl restart docker