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

Docker私有仓库

时间:2019-05-31 00:47:33      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:ack   trie   重启   pos   systemctl   显示   json   成功   pre   

一、安装docker私有仓库

1.拉取私有仓库的镜像

docker pull registry

2.启动私有仓库

docker run -di --name=registry -p 5000:5000 registry

3.浏览器访问http://192.168.25.129:5000/v2/_catalog。若浏览器显示{"repositories":[]}则表示安装成功

4.让docker信任私有仓库地址

1)编辑docker配置文件

vi /etc/docker/daemon.json

2)新增私有仓库地址

{
"registry-mirrors":["https://docker.mirrors.ustc.edu.cn"],
"insecure-registries":["192.168.25.129:5000"]
}

5.重启docker

systemctl restart docker

 

二、上传镜像到私有仓库

1.标记此镜像为私有仓库的镜像

docker tag jdk1.8 192.168.25.129:5000/jdk1.8

2.启动私有仓库

docker start registry

3.上传标记的镜像

docker push 192.168.25.129:5000/jdk1.8

 

Docker私有仓库

标签:ack   trie   重启   pos   systemctl   显示   json   成功   pre   

原文地址:https://www.cnblogs.com/naixin007/p/10952813.html

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