centos7 docker registry push错误“server gave HTTP response to HTTPS client”

Posted hobinly

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7 docker registry push错误“server gave HTTP response to HTTPS client”相关的知识,希望对你有一定的参考价值。

系统环境:centos7

docker版本: 1.12.3(注意版本,可能存在不同版本设置不同的情况)

docker registry版本:2.4.1

问题:

成功安装docker registry,在浏览器中输入http://192.168.1.100:5000/v2,成功返回json数据。在push 到docker registry时,报:

[[email protected] sysconfig]# docker push 192.168.1.100:5000/registry:2.4.1
The push refers to a repository [192.168.1.100:5000/registry]
Get https://192.168.1.100:5000/v1/_ping: http: server gave HTTP response to HTTPS client

这个问题可能是由于docker registry 未采用https服务所致。

很多文章都是通过修改docker的配置文件“etc/systemconfig/docker",重启docker来解决这个问题。但发现docker1.12.3版本并无此文件,根据网上创建此文件,并填入相应内容,重启docker无效果,仍然报此错误。

 

解决方法:

在”/etc/docker/“目录下,创建”daemon.json“文件。在文件中写入:

{ "insecure-registries":["192.168.1.100:5000"] }

保存退出后,重启docker。问题解决:

[[email protected] docker]# docker push 192.168.1.100:5000/registry:2.4.1
The push refers to a repository [192.168.1.100:5000/registry]
ee8e809cfde5: Pushed
ba20d499f984: Pushed
705e35f12f24: Pushed
42755cf4ee95: Pushed
2.4.1: digest: sha256:b66c4af9577744ae6d32e975808230e2ff558a5d50a7968d5102a900e147f3d5 size: 1158

 

参考文章:

http://stackoverflow.com/questions/38695515/can-not-pull-push-images-after-update-docker-to-1-12

 

以上是关于centos7 docker registry push错误“server gave HTTP response to HTTPS client”的主要内容,如果未能解决你的问题,请参考以下文章

docker(14):centos7 安装docker hub harbor,可视化registry

Centos7 docker pull速度特别慢

centos7 docker registry push错误“server gave HTTP response to HTTPS client”

Centos7 的Docker 镜像地址修改

CentOS7搭建Docker私有仓库----Docker

docker registry 安装步骤