本文主要是介绍【已经解决】 | docker的Get https://registry-1.docker.io/v2/: net/http: request canceled 报错 docker 国内源 超快速,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Docker错误:
docker在下载镜像的时候爆了错,网上一大堆解决方案,并不是完全正确,因此,把解决方案记录下来;
> 错误提示一:
Get https://registry-1.docker.io/v2/: net/http: request canceled 报错> 错误提示二:
Error response from daemon: Get https://index.docker.io/v1/search?q=mysql&n=25: net/http: TLS handshake timeout> 错误提示三:
Error response from daemon: Get https://registry-1.docker.io/v2/: net/http: TLS handshake timeout网上的解决方案:
1.创建daemon.json文件
2.写入自定义仓库
{
“registry-mirrors”:[“https://docker.mirrors.ustc.edu.cn”]
}
3.重启
systemctl restart docker.service
还是爆错。。。
于是多找几个国内镜像试试。。。
发现网上传的众多镜像,都是无法访问的。
最终找到了这个镜像 https://hub.daocloud.io
赶紧重启docker服务,试一试吧…
pull还是爆错。。。
可以用手动指定仓库的凡是pull镜像,命令如下
docker pull https://hub.daocloud.io/mysql
https://hub.daocloud.io/就是仓库地址后面跟镜像名即可
解决!
其实进入https://hub.daocloud.io网站,我们可以发现
这篇关于【已经解决】 | docker的Get https://registry-1.docker.io/v2/: net/http: request canceled 报错 docker 国内源 超快速的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!