使用docker默認鏡像常常出現速度慢甚至中斷等狀況,如何處理呢?能夠使用鏡像。軟件源和擴展源詳細安裝步驟請看教程。html
國內經常使用安裝源有中國科技大學、阿里雲、docker-cn、dockercloud、網易和華爲。linux
使用清華大學鏡像逐步安裝docker-ce安裝操做過程以下docker
#清華大學CentOS 鏡像幫助 https://mirrors.tuna.tsinghua.edu.cn/help/centos/ #清華大學epel 鏡像幫助 https://mirrors.tuna.tsinghua.edu.cn/help/epel/ #安裝依賴軟件 [root@promote ~]#yum install -y yum-utils device-mapper-persistent-data lvm2 #配置加速鏡像repo文件 [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 #清除yum緩存 [root@promote ~]# yum clean all #從新建立yum緩存 [root@promote ~]# yum makecache #安裝docker-ce [root@promote ~]# yum install docker-ce docker-ce-cli containerd.io # [root@promote ~]# sudo systemctl daemon-reload [root@promote ~]# sudo systemctl restart docker
配置docker其餘鏡像源。(阿里云爲例)json
#本頁面有阿里雲centos 和epel 鏡像 能夠Ctrl+F5搜索點擊help連接 https://opsx.alibaba.com/mirror
阿里雲配置帳號命令以下:vim
#xxxxxxxx 是我的加速器地址 sudo mkdir -p /etc/docker sudo tee /etc/docker/daemon.json <<-'EOF' { "registry-mirrors": ["https://xxxxxxxx.mirror.aliyuncs.com"] } EOF sudo systemctl daemon-reload sudo systemctl restart docker
本文推薦配置2個安裝源,分別是中國科技大學和阿里雲,其餘四個根據我的需求先擇配置。注意:阿里雲、華爲雲和網易雲鬚要登陸帳號獲取我的加速地址。具體命令以下centos
#部分docker安裝後未生成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"] } #訪問如下地址獲取和安裝腳本文件,適用於Linux、Mac和Windows https://www.daocloud.io/mirror
Docker中國鏡像加速app