Get https://registry-1.docker.io/v2/: net/http: TLS handshake timeout(Docker镜像拉取错误)

场景:

  • 在使用docker 拉取httpd的镜像时,报连接超时的问题,如标题

处理办法:

  • 修改或新建/ect/docker/daemon.json文件
sudo vim daemon.json
  • 文件中编辑阿里云的镜像地址:
{
 "registry-mirrors":["https://6kx4zyno.mirror.aliyuncs.com"]
}
  • 重启docker服务(注意:必须重启,否则不生效)
systemctl daemon-reload 
systemctl restart docker

你可能感兴趣的:(Get https://registry-1.docker.io/v2/: net/http: TLS handshake timeout(Docker镜像拉取错误))