下载设置清华镜像源

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
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e added ecosystem file for PM2 4 年前
5def40a3 Add host customization support for the NodeJS version 4 年前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐