码迷,mamicode.com
首页 > 其他好文 > 详细

docker registry (私有仓库)

时间:2019-12-05 22:15:39      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:trie   The   上传   ons   创建   ror   res   always   secure   

首先要导入registry的镜像文件
1.普通的registry
一条命令创建一个仓库
docker run -d -p 5000:5000 --restart=always --name registry -v /opt/myregistry:/var/lib/registry registry

上传镜像到私有仓库
a.给镜像打标签
docker tag centos:6.9 10.0.0.11:5000/centos:6.9

b.上传镜像
docker push 10.0.0.11:5000/centos:6.9

这样的报错:
The push refers to repository [10.0.0.11:5000/nginx]
Get https://10.0.0.11:5000/v2/: http: server gave HTTP response to HTTPS client

解决方法:
[root@docker1 tmp]# vim /etc/docker/daemon.json

{
"registry-mirrors": ["https://registry.docker-cn.com"],
"insecure-registries": ["10.0.0.12"]
}

docker registry (私有仓库)

标签:trie   The   上传   ons   创建   ror   res   always   secure   

原文地址:https://www.cnblogs.com/yangxiaoni/p/11991968.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!