0


Docker报错Error response from daemon: Get

问题1:没配置国内镜像导致的连接不稳地(阿里云镜像只能用在阿里云的服务器,本地也不行)

更换

"registry-mirrors": [
"https://docker.m.daocloud.io"
]

2024年10月14起,阿里云镜像仅限在阿里云产品上使用了,所以你在本地使用也不行

问题2:在Windows环境下,没开启Linux的服务支持

因为Docker的底层是基于Linux的,所以需要到控制面板-->程序-->启动或关闭Windows功能

把下面两个勾选上,然后要重启才能生效

问题3:保护进程IPv6报错

解决方案:
临时禁用IPv6,参考博客:Error response from daemon: Get “https://registry-1.docker.io/v2/“: dial tcp [2600:1f18:2148:bc01:57_error response from daemon :get-CSDN博客

sysctl -w net.ipv6.conf.all.disable_ipv6=1  
sysctl -w net.ipv6.conf.default.disable_ipv6=1

第三个问题我没遇到,前两个是我遇到解决了的

标签: docker github 容器

本文转载自: https://blog.csdn.net/m0_62097957/article/details/144065748
版权归原作者 隔壁兔爷 所有, 如有侵权,请联系我们删除。

“Docker报错Error response from daemon: Get”的评论:

还没有评论