在国内,可以通过registry.docker-cn.com访问官方镜像库,目前该镜像库只包含流行的公有镜像,而私有镜像仍需要从美国镜像库中拉取。

使用官方镜像

1
docker pull registry.docker-cn.com/myname/myrepo:tag

e.g.

1
docker pull registry.docker-cn.com/library/ubuntu:16.04

docker守护进程配置加速器

vim /etc/docker/daemon.json:

Docker官方中国区镜像:

1
2
3
{
“registry-mirrors”: [‘https://registry.docker-cn.com’]
}

或者:

1
2
3
{
"registry-mirrors": ["http://hub-mirror.c.163.com"]
}

或者用 自己登录注册看到的帐号下面的阿里云镜像加速器

重启docker:

1
2
systemctl daemon-reload
systemctl restart docker

If bug:

1
Job for docker.service failed because the controll process exited with error code. See "systemctl status docker.service" and "journalctl -xe" for details.

In /etc/docker:

1
mv daemon.json daemon.conf

就行了.


1
2
systemctl restart docker
docker version