docker默认的源为国外官方源,下载速度较慢,可改为国内源
方案一
修改或新增 docker默认的配置文件 vim /etc/docker/daemon.json
{
"registry-mirrors": ["http://hub-mirror.c.163.com"]
}
{
"builder": {
"gc": {
"defaultKeepStorage": "20GB",
"enabled": true
}
},
"experimental": false,
"features": {
"buildkit": true
},
"registry-mirrors": [
"https://registry.docker-cn.com",
"https://docker.mirrors.ustc.edu.cn",
"http://hub-mirror.c.163.com"
]
}
# 重启docker
service docker restart
# 查看是否成功
docker info
方案二
修改或新增 vim /etc/sysconfig/docker
# 在OPTIONS变量后追加参数 --registry-mirror=https://docker.mirrors.ustc.edu.cn
OPTIONS='--selinux-enabled --log-driver=journald --registry-mirror=https://docker.mirrors.ustc.edu.cn'
方案三
阿里云docker镜像加速,提升pull的速度
文章来源:https://www.toymoban.com/news/detail-780341.html
Docker国内源说明:文章来源地址https://www.toymoban.com/news/detail-780341.html
- Docker 官方中国区:https://registry.docker-cn.com
- 网易:http://hub-mirror.c.163.com
- 中国科技大学:https://docker.mirrors.ustc.edu.cn
- 阿里云:https://pee6w651.mirror.aliyuncs.com
- docker官网中国区镜像 --registry-mirror=https://registry.docker-cn.com
- 网易163 docker镜像 --registry-mirror=http://hub-mirror.c.163.com
- USTC镜像加速 --registry-mirror=https://docker.mirrors.ustc.edu.cn
- alicloud --registry-mirror=https://{your_id}.mirror.aliyuncs.com
到了这里,关于Docker设置国内镜像源的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!