快速设置docker国内加速镜像

我们使用docker默认的镜像服务器时,拉去镜像经常会连接超时,因为可以通过配置国内镜像解决该问题。

方式一(推荐):傻瓜式命令为curl -sSL https://get.daocloud.io/daotools/set_mirror.sh | sh -s https://registry.docker-cn.com

重启docker:service docker restart

方式二:手动配置

1、创建或修改 /etc/docker/daemon.json 文件:

vim /etc/docker/daemon.json

2、修改为如下形式:

{
    "registry-mirrors": ["http://hub-mirror.c.163.com"]
}
systemctl restart docker.service

3、按Esc键后,:wq。保存。

4、然后重新启动docker即可(linux命令:sudo systemctl restart docker)。

其中[xxx]括号里面的则为国内镜像地址,有如下推荐,也可以去网上去查找其他的国内镜像。

Docker中国区官方镜像
https://registry.docker-cn.com

网易
http://hub-mirror.c.163.com

ustc 
https://docker.mirrors.ustc.edu.cn

中国科技大学
https://docker.mirrors.ustc.edu.cn

你可能感兴趣的:(后台成长路,docker,linux,centos,镜像)