#清华大学CentOS
https://mirrors.tuna.tsinghua.edu.cn/help/centos/
#本页面有阿里云centos 和epel Ctrl+F5搜索
https://opsx.alibaba.com/mirror
#清华大学epel
https://mirrors.tuna.tsinghua.edu.cn/help/epel/

使用docker默认镜像经常出现速度慢甚至中断等情况,如何处理呢?可以使用镜像。

国内常用安装源有中国科技大学、docker-cn、dockercloud和阿里云。

首先安装docker。

#安装依赖
[root@promote ~]#yum install -y yum-utils device-mapper-persistent-data lvm2
#配置加速镜像
[root@promote ~]# yum-config-manager \
> --add-repo \
> https://mirrors.ustc.edu.cn/docker-ce/linux/centos/docker-ce.repo
已加载插件:fastestmirror
adding repo from: https://mirrors.ustc.edu.cn/docker-ce/linux/centos/docker-ce.repo
grabbing file https://mirrors.ustc.edu.cn/docker-ce/linux/centos/docker-ce.repo to /etc/yum.repos.d/docker-ce.repo
repo saved to /etc/yum.repos.d/docker-ce.repo
[root@promote ~]# yum clean all
[root@promote ~]# yum makecache
#
[root@promote ~]# yum-config-manager --enable docker-ce-nightly
#安装docker
[root@promote ~]# yum install docker-ce docker-ce-cli containerd.io

#Docker官方网站帮助地址

以上是安装准备工作。本文需要配置2个安装源,实际准备环境还需要两个,分别是CentOS官方和epel源。

#部分系统安装后未生成daemon.json,请执行以下命令
[root@promote ~]# mkdir -p /etc/docker
[root@promote ~]# touch /etc/docker/daemon.json
[root@promote ~]# vim /etc/docker/daemon.json
#以下三种配置文件任选一个
#配置文件1 (中国科技大学)
[root@promote ~]# cat /etc/docker/daemon.json
{
  "registry-mirrors": ["https://docker.mirrors.ustc.edu.cn"]
}

#配置文件2 (docker-cn)
{
  "registry-mirrors": ["https://registry.docker-cn.com"]
}

#阿里云镜像加速,需要登录阿里云后台,使用镜像加速功能获取自定义url替换xxxxxxxx
{
  "registry-mirrors": ["https://xxxxxxxxxx.mirror.aliyuncs.com"]
}

#访问以下地址获取和安装脚本文件,适用于Linux、Mac和Windows
https://www.daocloud.io/mirror

中国科技大学Docker安装源帮助

Docker中国镜像加速

daocloud 镜像加速

登录阿里云使用镜像加速获取自定义链接和帮助

tips:pip加速

04-02 02:42