1. 程式人生 > >Docker國內映象的配置及使用

Docker國內映象的配置及使用

這裡以CentOS為例:

CentOS

安裝或升級Docker
您可以通過阿里雲的映象倉庫下載: mirrors.aliyun.com/help/docker-engine
curl -sSL http://acs-public-mirror.oss-cn-hangzhou.aliyuncs.com/docker-engine/internet | sh -

配置Docker加速器
您可以使用如下的指令碼將mirror的配置新增到docker daemon的啟動引數中。
# 系統要求 CentOS 7 以上,Docker 1.9 以上。
sudo cp -n /lib/systemd/system/docker.service /etc/systemd/system/docker.service
sudo
sed -i "s|ExecStart=/usr/bin/docker daemon|ExecStart=/usr/bin/docker daemon --registry-mirror=https://1234abcd.mirror.aliyuncs.com|g" /etc/systemd/system/docker.service sudo systemctl daemon-reload sudo service docker restart

其他Docker國內映象的使用

大致等同於阿里雲的Docker加速器,主要環節也就是以下三步:

  1. 註冊賬號,獲得專屬的映象加速地址。
  2. 根據提示和系統型別,升級、配置並重啟Docker。
  3. 實際操作,驗證配置是否正確。

手動配置Docker加速器

配置Docker加速器的本質就是把Docker配置檔案中的映象下載地址由預設的Docker Hub地址變為國內映象的加速地址。
/lib/systemd/system/docker.service
/etc/systemd/system/docker.service

例如:CentOS7
將如下內容加入到Docker配置檔案/etc/sysconfig/docker,然後重啟docker。
OPTIONS=--registry-mirror=http://abcd1234.m.daocloud.io

或者

:配置及使用Docker加速器

這裡以Linux系統為例。

Linux
curl -sSL https://get.daocloud.io/daotools/set_mirror.sh | sh -s http://abcd1234.m.daocloud.io
該指令碼可以將 --registry-mirror 加入到你的 Docker 配置檔案中。
適用於 Ubuntu14.04、Debian、CentOS6 、CentOS7、Fedora、Arch Linux、openSUSE Leap 42.1,其他版本可能有細微不同。

注意:將http://abcd1234.m.daocloud.io替換為實際的連結。

配置Docker加速器

[[email protected] ~]# uname -a 
Linux CentOS-7 3.10.0-327.el7.x86_64 #1 SMP Thu Nov 19 22:10:57 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
[[email protected] ~]# 
[[email protected] ~]# cat /etc/redhat-release 
CentOS Linux release 7.2.1511 (Core) 
[[email protected] ~]# 
[[email protected] ~]# curl -sSL https://get.daocloud.io/daotools/set_mirror.sh |sh -s http://abcd1234.m.daocloud.io
Success.
You need to restart docker to take effect: sudo systemctl restart docker 
[[email protected] ~]# 
[[email protected] ~]# systemctl restart docker
[[email protected] ~]# 

使用Docker加速器拉取映象

[[email protected] ~]# docker images
REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
[[email protected] ~]# 
[[email protected] ~]# docker run ubuntu
Unable to find image 'ubuntu:latest' locally
Trying to pull repository docker.io/library/ubuntu ... 
latest: Pulling from docker.io/library/ubuntu
b3e1c725a85f: Pull complete 
4daad8bdde31: Pull complete 
63fe8c0068a8: Pull complete 
4a70713c436f: Pull complete 
bd842a2105a8: Pull complete 
Digest: sha256:dbe36a89ad8daf8bbd2a68f14eab18b969d3f125104da51df6337bbf08d1c8ae
Status: Downloaded newer image for docker.io/ubuntu:latest
[[email protected] ~]# 
[[email protected] ~]# docker images
REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
docker.io/ubuntu    latest              104bec311bcd        8 days ago          128.9 MB
[[email protected] ~]