Docker pull下载出现 error pulling image configuration:

  • 出现这个问题,并且在错误信息的最后附带 net/http: TLS handshake timeout:
  • 猜测是docker的相关配置问题,导致无法通过TLS握手
  • 执行如下命令修改配置
echo "DOCKER_OPTS=\"\$DOCKER_OPTS --registry-mirror=http://f2d6cb40.m.daocloud.io\"" | sudo tee -a /etc/default/docker
  • 然后就能使用docker pull 拉取镜像了 (我未进行重启docker即可, 如果不行,systemctl restart docker 进行重启)
  • 不光是docker官网,也可以通过http找到其他镜像网站

原文地址:https://www.cnblogs.com/lz0925/p/12028296.html

时间: 2024-08-01 10:33:25

Docker pull下载出现 error pulling image configuration:的相关文章

Docker pull 出现的 error pulling image configuration: Get https://dseasb33srnrn.cloudfront.net/

vim /etc/sysconfig/docker OPTIONS='--selinux-enabled --log-driver=journald --signature-verification=false --registry-mirror=http://f2d6cb40.m.daocloud.io' systemctl daemon-reloadsystemctl restart docker 原文地址:https://www.cnblogs.com/cjsblogs/p/8695468

解决docker下载[[email protected] var]# docker pull java Using default tag: latest Try镜像出现 error pulling image configuration: Get https://dseasb33srnrn.cloudfront.net......: net/http: TLS handshake timeout的问题

[[email protected] var]# docker pull javaUsing default tag: latestTrying to pull repository docker.io/library/java ... latest: Pulling from docker.io/library/java5040bd298390: Pulling fs layer fce5728aad85: Pulling fs layer 76610ec20bf5: Waiting 6017

docker下来镜像error pulling image configuration:

错误信息:error pulling image configuration: Get https://production.cloudflare.docker.com/YV0f4%3D: x509: certificate has expired or is not yet valid --registry-mirror=http://f2d6cb40.m.daocloud.io 原文地址:https://blog.51cto.com/68686789/2359659

使用docker pull 下载的镜像为什么只有几百兆?

一.问题背景 通常我们下载一个centos镜像至少有3G,在docker容器中使用docker pull centos下载的镜像为啥只有200M呢? 带着问题一起学习.思考这个问题 Linux操作系统分别由两部分组成1.内核空间(kernel)2.用户空间(rootfs) 内核空间是kernel,Linux刚启动时会加载bootfs文件系统,之后bootf会被卸载掉, 用户空间的文件系统是rootfs,包含常见的目录,如/dev./proc./bin./etc等等 不同的Linux发行版本主要的

docker镜像下载出现:received unexpected HTTP status: 500 Internal Server Error

1.镜像下载总是出现报错:received unexpected HTTP status: 500 Internal Server Error 2.尝试多种方法: ①阿里云docke加速器:注册之后,配置好重新下载依然出现这种情况: ②尝试加上版本号: 原先我是直接复制https://hub.docker.com/r/library/上的: 之后改成这样: docker pull tomcat:9.0.30 直接去掉后面只留版本号,这样马上就下载好了 原文地址:https://www.cnblo

mac上docker pull是报错Error response from daemon: Get https://xx.xx.xx.xx/v2/: Service Unavailable

执行docker pull xx.xx.xx.xx/xx/xx,下载私有库的镜像时报错如下: Error response from daemon: Get https://xx.xx.xx.xx/v2/: Service Unavailable 原因大概是docker默认支持https的协议,而私有库是http的协议. mac桌面可以在Preferences-->Docker Engine里配置以下代码,xx.xx.xx.xx是自己私有库的地址. { "insecure-registri

docker pull / docker login 报错 Error response from daemon: Get https://registry-1.docker.io/v2/: x509

docker pull 和 docker login 的时候报错 Error response from daemon: Get https://registry-1.docker.io/v2/: x509: certificate is valid for bw-production.space, brickworksoftware.com, *.bw-production.space, *.brickworksoftware.com, not registry-1.docker.io 从报错

Docker镜像下载&Docker镜像操作常用命令

Docker系统简介 Docker系统有两个程序:docker服务端和docker客户端.其中docker服务端是一个服务进程,管理着所有的容器.docker客户端则扮演着docker服务端的远程控制器,可以用来控制docker的服务端进程.大部分情况下,docker服务端和客户端运行在一台机器上. 检查docker版本 检查docker的版本,这样可以用来确认docker服务在运行并可通过客户端链接. 命令如下: [[email protected] ~]# docker version Cl

Git版本控制工具使用:Error pulling origin: error: Your local changes to the following files would be overwritten by merge

摘自: CSDN 逆觞 git在pull时,出现这种错误的时候,可能很多人进进行stash,相关stash的请看:Error pulling origin: error: Your local changes to the following files would be overwritten by merge 但是发现stash后还是会出现:Error pulling origin: error: The following untracked working tree files woul