常见问题现象
- 在使用 Docker 拉取镜像时出现错误:Error response from daemon: Get “https://registry-1.docker.io/v2/”: net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)
- 在使用 Docker 时遇到拉取镜像速度慢的问题
出现以上问题可以使用国内的镜像源可以提高下载速度。
使用阿里镜像加速器
Docker 配置文件位于
/etc/docker/daemon.json
。如果文件不存在,可以手动创建它。将以下内容添加到配置文件中:
整体复制执行命令:
sudomkdir-p /etc/docker
sudotee /etc/docker/daemon.json <<-'EOF'
{
"registry-mirrors": ["https://[系统分配前缀].mirror.aliyuncs.com"]
}
EOFsudo systemctl daemon-reload
sudo systemctl restart docker
根据以下方法获取其中的
[系统分配前缀]
获取阿里云系统分配前缀
阿里云官方文档:
https://help.aliyun.com/zh/acr/user-guide/accelerate-the-pulls-of-docker-official-images
登录阿里云查询拥有的镜像加速器地址:
https://cr.console.aliyun.com/cn-hangzhou/instances/mirrors
其他Docker镜像源
版权归原作者 让梦想疯狂 所有, 如有侵权,请联系我们删除。