Docker - 配置DaoCloud的Docker加速器
Docker - 配置DaoCloud的Docker加速器
由於眾所周知的原因,從Docker Hub難以高效地下載映象。
除了使用VPN或代理之外,最為有效的方式就是使用Docker國內映象。
DaoCloud是首個提供國內免費Docker Hub映象的團體,可以使用DaoCloud團隊提供的Docker Hub Mirror服務。
Docker加速器簡介
Docker加速器是 DaoCloud 推出的 Docker Hub Mirror 服務的官方名稱。
Docker加速器提供Docker Registry(Docker Hub)在中國的映象代理服務,為中國使用者在國內伺服器上快取諸多映象。
當用戶的Docker設定了--registry-mirror引數後,使用者的Docker拉取映象時,首先去Docker加速器中查詢映象,若命中則說明該映象已經在Docker加速器中快取,使用者直接從Docker加速器中下載。
若沒有命中,則說該映象還沒有被快取,那麼Docker加速器首先會被驅使去Docker Hub中下載該映象,並進行快取,最終讓使用者從Docker加速器中下載該映象。
Docker加速器使用說明
在DaoCloud註冊並登入。
在登入後的頁面(https://dashboard.daocloud.io/),點選“加速器”標籤,根據新彈出的頁面中“配置 Docker 加速器”資訊,更改自己的 Docker 配置檔案,然後重啟Docker,使之生效。
注意:此時,從“配置 Docker 加速器”資訊中,我們其實已經得到一個免費的docker映象地址,類似於“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,其他版本可能有細微不同。
vi /etc/docker/daemon.json 去掉多餘的逗號
注意:將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] ~]#