博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
docker构建私有仓库
阅读量:6335 次
发布时间:2019-06-22

本文共 1184 字,大约阅读时间需要 3 分钟。

hot3.png

1.在原有的docker服务基础上,下拉一个  镜像:

docker pull registry:2.6.2

2.运行:

docker run -d -p 5000:5000 --restart=always --name registry registry:2.6.2

 3.将自己的镜像推送到私有仓库:

    例如:docker.io/langwanghuangshifu/eureka-server:latest

docker push localhost:5000/langwanghuangshifu/eureka-server:latest

    运行提示:

    The push refers to a repository [localhost:5000/langwanghuangshifu/eureka-server]    An image does not exist locally with the tag: localhost:5000/langwanghuangshifu/eureka-server

    此时,会发现推送失败,由于docke hub 为默认的镜像仓库,推送命令实质上为:docker push docker.io/langwanghuangshifu/eureka-server:latest

    因此需要将上述镜像更改镜像标签:

docker tag langwanghuangshifu/eureka-server:latest localhost:5000/langwanghuangshifu/eureka-server:latest

    再次执行:

docker push localhost:5000/langwanghuangshifu/eureka-server:latest

    推送成功:

2559b1e8cb1008e2b019fd22f7426354bba.jpg

4.查看私有仓库的镜像:

  • 镜像列表:

[root ~]# curl http://localhost:5000/v2/_catalog

{"repositories":["langwanghuangshifu/eureka-server"]}
 

  • 具体某个镜像的标签列表:

    curl http://localhost:5000/v2/镜像名/tags/list

        例如:langwanghuangshifu/eureka-server

[root ~]# curl http://localhost:5000/v2/langwanghuangshifu/eureka-server/tags/list

{"name":"langwanghuangshifu/eureka-server","tags":["latest"]}

转载于:https://my.oschina.net/langwanghuangshifu/blog/2964971

你可能感兴趣的文章
Android性能优化之利用Rxlifecycle解决RxJava内存泄漏
查看>>
转: 如何为你的开源项目选择一个合适的开源协议?
查看>>
关系型数据库和NOSQL数据库对比
查看>>
Atitit 记录方法调用参数上下文arguments
查看>>
webstorm常用功能FTP,及常用快捷键
查看>>
eclipse html 打开方式
查看>>
[求助] win7 x64 封装 出现 Administrator.xxxxx 的问题
查看>>
人类投资经理再也无法击败电脑的时代终将到来了...
查看>>
一个最小手势库的实现
查看>>
HoloLens开发手记 - Vuforia开发概述 Vuforia development overview
查看>>
Android支付之支付宝封装类
查看>>
<亲测>CentOS中yum安装ffmpeg
查看>>
【分享】马化腾:产品设计与用户体验
查看>>
【机器学习PAI实践十】深度学习Caffe框架实现图像分类的模型训练
查看>>
全智慧的网络:思科十年来最具颠覆性的创新
查看>>
怎样将现有应用迁移到 VMware NSX
查看>>
赛门铁克收购以色列移动安全初创公司Skycure 旨在构建网络安全防御平台
查看>>
《Photoshop蒙版与合成(第2版)》目录—导读
查看>>
《团队软件过程(修订版)》—第1章1.3节TSPi的设计
查看>>
“最佳人气奖”出炉!4月27号,谁能拿到阿里聚安全算法挑战赛的桂冠?
查看>>