下载设置清华镜像源

cd /etc/yum.repos.d/
wget https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/centos/docker-ce.repo

替换默认下载源

sed -i "s@https://download.docker.com/@https://mirrors.tuna.tsinghua.edu.cn/docker-ce/@g"  /etc/yum.repos.d/docker-ce.repo

安装

yum repolist
yum install docker-ce -y

创建配置文件-镜像加速docker-ce:
配置文件:/etc/docker/daemon.json

mkdir /etc/docker/
cat << EOF >/etc/docker/daemon.json
{
"registry-mirrors": ["https://registry.docker-cn.com"]
}
{
"registry-mirrors": ["http://hub-mirror.c.163.com"]
}
EOF

测试安装完成

[root@localhost ~]# docker -v
Docker version 18.09.1, build 4c52b90

启动服务

systemctl start docker
systemctl enable docker

一键安装(默认)

docker 官方提供了一键安装 docker 脚本工具,GITHUB 地址

curl -fsSL https://get.docker.com -o get-docker.sh
sh get-docker.sh

一键安装(阿里)

curl -fsSL https://get.docker.com -o get-docker.sh
sh get-docker.sh --mirror=Aliyun
Logo

有“AI”的1024 = 2048,欢迎大家加入2048 AI社区

更多推荐