1.3 CentOS Docker 安装
安装方法直接参考Docker手册及安装说明就行,比较简单
中文:
https://www.runoob.com/docker/centos-docker-install.html
英文官网:
https://docs.docker.com/install/linux/docker-ce/centos/
由于我是直接使用root操作,因此所有命令不需要加 sudo 前缀
安装后测试下,查看版本号
docker --version
设置为docker开机自启动
chkconfig docker on
解决Centos7 下Docker拉取镜像慢的问题
接下来需要解决Centos7 下Docker拉取镜像慢的问题,先配置加速Docker镜像源
先登录阿里云,然后访问以下地址
https://cr.console.aliyun.com/cn-hangzhou/instances/mirrors
如下图就可以看到加速器地址
得到加速器地址,同时我也增加了国内多个加速器地址,一并放到registry-mirrors数组里
注意:下面 https://u1fynok1.mirror.aliyuncs.com 的地址已经不存在,需要换上你自己的阿里云地址
mkdir -p /etc/docker
tee /etc/docker/daemon.json <<-'EOF'
{
"registry-mirrors": ["https://u1fynok1.mirror.aliyuncs.com",
"http://hub-mirror.c.163.com",
"https://docker.mirrors.ustc.edu.cn"]
}
EOF
systemctl daemon-reload
systemctl restart docker
本文由小韦云原创,转载请注明出处:https://www.bctos.cn/doc/5/1808,否则追究其法律责任