docker拉取镜像报错:docker: error pulling image configuration: Get https://production.cloudflare.docker.com

这篇具有很好参考价值的文章主要介绍了docker拉取镜像报错:docker: error pulling image configuration: Get https://production.cloudflare.docker.com。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

1. 使用docker拉取对应的镜像的时候报错:docker: error pulling image configuration: Get https://production.cloudflare.docker.com/registry-v2/docker/registry/v2/blobs/sha256/04/04540a0bb9853e0c23e03f0cfbde3fdbdb01590a663fe18860cb3425cd64aea8/data?verify=1703832355-UFgWc0cR%2BiTO%2BkcRi6YlKA%2BEVi4%3D: net/http: TLS handshake timeout.

2.百度了一下说要更新镜像仓库文件/etc/docker/daemon.json我按照方法改成了:

#   sudo vi /etc/docker/daemon.json   

{ "registry-mirrors": ["https://registry.docker-cn.com","https://s3d6l2fh.mirror.aliyuncs.com"] }

# 重启docker

#sudo systemctl restart docker

3.再次进行拉取镜像文件报新的错误:

error pulling image configuration,测试工具,docker,dubbo,java

4. 网上百度了一下说是DNS的问题

error pulling image configuration,测试工具,docker,dubbo,java

修改这个文件并且增加新的nameserver  114.114.114.114

error pulling image configuration,测试工具,docker,dubbo,java

5.再次拉取镜像还是失败,然后又百度了一下说还是镜像仓库的问题多加几个下载源

#vim /etc/docker/daemon.json    将这个文件里面的内容清空替换成:

"registry-mirrors": ["http://hub-mirror.c.163.com",
        "https://docker.mirrors.ustc.edu.cn",
        "https://registry.docker-cn.com",
        "http://hub-mirror.c.163.com",
        "https://docker.mirrors.ustc.edu.cn",
        "https://docker.mirrors.ustc.edu.cn"
        ]

error pulling image configuration,测试工具,docker,dubbo,java

# systemctl restart docker   重启docker

6.再次拉取镜像,拉取镜像成功

error pulling image configuration,测试工具,docker,dubbo,java

7.查看已有的镜像

error pulling image configuration,测试工具,docker,dubbo,java文章来源地址https://www.toymoban.com/news/detail-861033.html

到了这里,关于docker拉取镜像报错:docker: error pulling image configuration: Get https://production.cloudflare.docker.com的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包赞助服务器费用

相关文章

  • docker pull 拉取镜像报错

    docker pull 拉取镜像报错

    报错信息:Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 简单理解就是拉取镜像失败,外部原因:拉取次数上线,或者该镜像收费,你可以检查下你用的镜像源地址是国内的还是国

    2024年02月03日
    浏览(10)
  • 【Docker】error pulling image configuration: download failed after attempts=6: dial tc

    【Docker】error pulling image configuration: download failed after attempts=6: dial tc

    问题:在学习Docker的时候遇到pull失败的情况   解决方法: 解决结果:  

    2024年02月11日
    浏览(10)
  • docker pull拉取镜像时出错:Error response from daemon...

    docker pull拉取镜像时出错:Error response from daemon...

    错误信息: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) 根据错误信息,可以确定是网络原因导致的 1、镜像源排查 首先根据经验排查可能是由于国外的镜像源网络慢导致的 于是我把docker镜像

    2024年02月08日
    浏览(13)
  • k8s拉取私有仓库镜像失败:rpc error: code = Unknown desc = failed to pull and unpack image【20221121】

    k8s拉取私有仓库镜像失败:rpc error: code = Unknown desc = failed to pull and unpack image【20221121】

    k8s拉取镜像并不是通过docker拉取,而是通过 crictl拉取的。 失败原因如下: 解决方法: 1、先拷贝一份 2、修改/etc/containerd/config.toml 找到plugins.“io.containerd.grpc.v1.cri”.registry的位置 修改之前: 修改之后: 3、 内容: 4、重启 5、再次拉取

    2024年02月11日
    浏览(10)
  • error pulling image configuration: download failed after attempts=6: dialing production.cloudflare.d

    error pulling image configuration: download failed after attempts=6: dialing production.cloudflare.d

    一 背景        在Mac系统上,启动Docker Desktop后,想部署一个docker-compose 文件,然后执行 docker-compose up 时,出现错误提示如下(如下图): 二 如何解决这个问题        这个问题一看,就应该知道问题的所在了:拉镜像的地址不对,无法连接。既然知道是这个问题,其实把

    2024年02月11日
    浏览(9)
  • docker pull 拉取失败,设置docker国内镜像

    docker pull 拉取失败,设置docker国内镜像

    最近在拉取nginx时,显示如下错误: Error response from daemon: Get “https://registry-1.docker.io/v2/”: net/http: request canceled (Client.Timeout exceeded while awaiting headers) 。 这个的问题是 拉取镜像超时 ,通过检索发现可以通过 配置国内镜像的方式解决 ,镜像地址很多,这里只说阿里云的镜像地

    2024年04月17日
    浏览(12)
  • docker pull拉取镜像失败问题解决

    docker pull拉取镜像失败问题解决

    docker pull Retrying in 1 second 问题解决办法: 使用阿里云加速器 1、首先进入阿里云的docker库https://cr.console.aliyun.com/cn-hangzhou/instances/mirrors 2、注册账号,并进入控制台管理; 3、选择镜像加速器选项,进入到镜像加速器选项,可以看到加速器地址,可以根据提示的修改步骤进行修

    2024年02月08日
    浏览(12)
  • docker pull 镜像拉取命令详解

    docker pull 镜像拉取命令详解

    Docker是一种流行的容器化平台,它允许用户构建、分享和运行容器化的应用程序。要使用Docker,您需要先下载所需的Docker镜像。之前我们介绍了在Ubuntu系统上安装docker,本文将接着介绍如何使用Docker Pull命令下载Docker镜像的步骤。 获取更多技术资料,请点击! docker pull docke

    2024年02月14日
    浏览(8)
  • 【docker】拉取镜像环境报错解决#ERROR: Get https://registry-1.docker.io/v2/

    🍁 博主简介   🏅云计算领域优质创作者   🏅华为云开发者社区专家博主   🏅阿里云开发者社区专家博主 💊 交流社区: 运维交流社区 欢迎大家的加入!

    2024年02月06日
    浏览(12)
  • docker拉取镜像报错Error response from daemon: Get https://registry-1.docker.io/v2/:

    docker拉取镜像报错Error response from daemon: Get https://registry-1.docker.io/v2/:

    提示:以下是本篇文章正文内容 环境:ubuntu+docker 问题:执行docker pull wurstmeister/zookeeper报如下错 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网站上下载

    2024年02月06日
    浏览(14)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包