当前位置: 代码迷 >> 综合 >> Error response from daemon: Get https://registry-1.docker.io/v2/: net/http: TLS handshake timeout
  详细解决方案

Error response from daemon: Get https://registry-1.docker.io/v2/: net/http: TLS handshake timeout

热度:13   发布时间:2023-12-05 08:06:00.0

docker拉取镜像时出现以下错误

MacBook-Pro:docker thewhite$ docker pull centos:centos7
Error response from daemon: Get https://registry-1.docker.io/v2/: net/http: TLS handshake timeout

docker默认的源为国外官方源,下载速度较慢,可改为国内,加速

客户端可直接加入配置项:
在这里插入图片描述
或者进入/etc/docker

查看有没有 daemon.json。这是docker默认的配置文件。

如果没有新建,如果有,则修改。

{"registry-mirrors": ["https://registry.docker-cn.com","http://hub-mirror.c.163.com"]
}
  相关解决方案