Docker更换国内镜像源

使用 Docker 的时候,需要经常从官方获取镜像,但是由于显而易见的网络原因,拉取镜像的过程非常耗时,严重影响使用 Docker 的体验。

docker: Get https://registry-1.docker.io/v2/: net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers).
See ‘docker run --help’.

点击右上角docker图标进入perferences…
在Registory mirrors中点击“+”添加镜像源 这里使用的是DaoCloud的MacOS专用镜像
http://f1361db2.m.daocloud.io
Docker更换国内镜像源_第1张图片
之后点击下面的Apply & Restart 就生效了
https://docker.mirrors.ustc.edu.cn

Linux & Windows用户配制方法:
配置 Daemon

  • 编辑 /etc/docker/daemon.json(Linux)
  • %programdata%\docker\config\daemon.json(Windows)

配置文件中加入(没有该文件的话,先建一个):

{
  "registry-mirrors": ["https://docker.mirrors.ustc.edu.cn"]
}

中科大镜像

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