用Docker Registry 建立私有镜像库

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用Docker Registry 建立私有镜像库相关的知识,希望对你有一定的参考价值。

1 环境

2 步骤

3 FAQ

4 参考

环境

ubuntu-16.04-desktop-amd64.iso

步骤

具体可参考博文,在我的环境实施成功,在此借花献佛了:http://www.cnblogs.com/lienhua34/p/4922130.html

FAQ

上面的博文唯一对push失败的解决方案,在我的环境里不生效,

错误提示如下:

root@slave2:/etc/default# sudo docker push 192.168.80.130:5000/hello-world
The push refers to a repository [192.168.80.130:5000/hello-world]
Get https://192.168.80.130:5000/v1/_ping: http: server gave HTTP response to HTTPS client

我用另一种方式解决的,步骤如下:

root@slave2:/etc/docker# echo \'{ "insecure-registries":["192.168.80.130:5000"] }\' > /etc/docker/daemon.json

root@slave2:/etc/docker# systemctl restart docker

执行上述两个命令后,重试docker push 成功:

root@slave2:/etc/docker# docker push 192.168.80.130:5000/hello-world
The push refers to a repository [192.168.80.130:5000/hello-world]
a02596fdd012: Pushed
latest: digest: sha256:f18d040ea7bf47c7ea8f7ff1a8682811cf37551c747158e37b9c75f5450e6fac size: 2097

参考

http://www.111cn.net/sys/linux/118539.htm

以上是关于用Docker Registry 建立私有镜像库的主要内容,如果未能解决你的问题,请参考以下文章

docker私有库

docker本地镜像推送到私有库-Docker Registry

docker-建立私有registry

Docker私有仓库Registry的搭建验证

Docker安装私有仓库,用户认证(Registry)

docker:用registry快速搭建私有镜像仓库