下载设置清华镜像源

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
GitHub 加速计划 / li / linux-dash
12
2
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e added ecosystem file for PM2 5 年前
5def40a3 Add host customization support for the NodeJS version 5 年前
Logo

AtomGit 是由开放原子开源基金会联合 CSDN 等生态伙伴共同推出的新一代开源与人工智能协作平台。平台坚持“开放、中立、公益”的理念,把代码托管、模型共享、数据集托管、智能体开发体验和算力服务整合在一起,为开发者提供从开发、训练到部署的一站式体验。

更多推荐