docker下载pull镜像images慢问题,配置加速器

配置 Docker 加速器

Docker For Mac
右键点击桌面顶栏的 docker 图标,选择 Preferences ,在 Daemon 标签(Docker 17.03 之前版本为 Advanced 标签)下的 Registry mirrors 列表中加入下面的镜像地址:
http://3fcb7f5b.m.daocloud.io Copy
点击 Apply & Restart 按钮使设置生效。

Linux
curl -sSL https://get.daocloud.io/daotools/set_mirror.sh | sh -s http://3fcb7f5b.m.daocloud.io Copy
该脚本可以将 --registry-mirror 加入到你的 Docker 配置文件 /etc/docker/daemon.json 中。适用于 Ubuntu14.04、Debian、CentOS6 、CentOS7、Fedora、Arch Linux、openSUSE Leap 42.1
注意:执行后会导致docker无法启动,编辑配置文件去掉逗号

Docker For Windows
在桌面右下角状态栏中右键 docker 图标,修改在 Docker Daemon 标签页中的 json ,把下面的地址:
http://3fcb7f5b.m.daocloud.io Copy
加到"registry-mirrors"的数组里。点击 Apply 。

你可能感兴趣的:(容器技术(depops))