【云计算】开源的Docker Registry WebUI
Pages 4
Browse repositories
The entry point for everything is the list of repositories. Here, only one repo is shown because we searched for it using the input field above the list of repositories.
Browse tags
Inside every repository you will find a list of tags associated with that repository. In the screenshot below there's only one tag listed. In principle you could filter by tag name or ID by using the input field above the list of tags.
The tags inside a repository can can be filtered by name:
Tag details
The following screenshot shows the details once you clicked on a tag. To be super correct, these details are details about the image and not about the tag. Remember, that every tag is associated with an image.
Create tag
For each image or tag you can create another tag by clicking on the "Create Tag" button in the tag details overview. The following screenshot shows how a tag can be created. At first you select an existing repository in which the tag shall be created. Then you specify the name of a tag. After you've clicked the create button, you'll be redirected to the freshly created tag page.
Delete tag
Deleting a tag doesn't mean you delete all the images and layers associated with it. Okay, this depends on the underlying registry storage, I know. The "delete tag" dialog summarizes all the details about tag deletion. You can reach this dialog by clicking the "delete tag" button in the tag details overview. To finally delete a tag, you're going to have to unlock the delete button by checking the box next to it. This is meant as a simple yet effective security measure for people not to accidentaly click on the delete button.
Delete repository
Deleting a repository may be a simple thing to execute technically, but the effects can be quite significant. Therefore the delete repository dialog is as expression about this as the delete tag dialog. You can reach the delete repository dialog by clicking on the "delete repository" button in the tag browsing screen.
参考资料:
https://github.com/kwk/docker-registry-frontend/wiki/Features
https://github.com/kwk/docker-registry-frontend
https://hub.docker.com/r/konradkleine/docker-registry-frontend/
【云计算】开源的Docker Registry WebUI的更多相关文章
- Docker学习之Docker Registry
前言 前面已经学习了怎样通过Dockerfile来构建我们自己的镜像了,但是一个系统可能包含着很多个微服务即有很多个镜像,当镜像越来越多的时候,就必须得有一个地方来管理这些镜像,Docker官方提供了 ...
- 【云计算】docker registry v2简介
ubuntu docker方式部署docker registry v2 2016-03-03 17:36 by JackieHan, 4 阅读, 0 评论, 收藏, 编辑 生成自己签名的证书 生成签 ...
- 下一代云计算模式:Docker正掀起个性化商业革命
作者: 吴宁川 来源: ITValue 发布时间: 2015-09-20 10:41 阅读: 10008 次 推荐: 16 原文链接 [收藏] 文/ITValue 记者吴宁川 从 20 ...
- 转 下一代云计算模式:Docker正掀起个性化商业革命
下一代云计算模式:Docker正掀起个性化商业革命 作者: 吴宁川 来源: ITValue 发布时间: 2015-09-20 10:41 阅读: 14052 次 推荐: 26 原文链接 ...
- Docker系列08—搭建使用私有docker registry
本文收录在容器技术学习系列文章总目录 1.了解Docker Registry 1.1 介绍 registry 用于保存docker 镜像,包括镜像的层次结构和元数据. 启动容器时,docker dae ...
- Docker registry私有仓库(七)
Docker registry私有仓库搭建基本几步流程(采用nginx+认证的方式) 1. 申请免费的ssl证书 https://buy.wosiqn.com/free 2. 设置nginx ssl证 ...
- 企业级Docker Registry —— Harbor搭建和使用
本节内容: Harbor介绍 安装部署Harbor 环境要求 环境信息 安装部署harbor 配置harbor 配置存储 完成安装和启动harbor 访问Harbor 修改管理员密码 启动后相关容器 ...
- docker4dotnet #4 使用Azure云存储构建高速 Docker registry
使用Docker来构建应用程序最常见的操作就是 docker run 或者 docker pull了,但是由于众所周知的原因,在国内想要高速稳定的获取docker hub上面的资源并不是件容易的事情, ...
- 建立docker私有库(docker registry)(转)
建立docker私有库(docker registry) 博客分类: docker 我的目标还是无互联网安装,部署内部的docker私有库,目前docker镜像的获得还是需要互联网,将下载好的do ...
随机推荐
- qt添加最小化和关闭按钮
int width = this->width();//获取界面的宽度 //构建最小化.最大化.关闭按钮 QToolButton *minButton = new QToolButton(thi ...
- MVC学习Day01
~~~~ =============================================================================================== ...
- 【OpenJudge1814】 恼人的青蛙 暴力+剪枝优化
此题poj1054上也有 #include<cstdio> #include<cstring> #include<algorithm> using namespac ...
- Html-Css-设置DIV边框圆滑
border-radius: 10px; -moz-border-radius: 10px; -webkit-border-radius: 10px; -o-border-radius: 10px; ...
- Json转换为对象
JObject paramsList = JObject.Parse(OOOO); var obj = paramsList["AAAA"];
- list 内部方法
代码 #list内部方法 l=['a','9','c','a','3','7'] print(dir(l)) l.append('v') print(l)#append(self, p_object) ...
- LinkedHashMap实现LRU算法
LinkedHashMap特别有意思,它不仅仅是在HashMap上增加Entry的双向链接,它更能借助此特性实现保证Iterator迭代按照插入顺序(以insert模式创建LinkedHashMap) ...
- TYVJ1038 忠诚
hzw学长博客里的2048,根本停不下来! 描述 老管家是一个聪明能干的人.他为财主工作了整整10年,财主为了让自已账目更加清楚.要 求管家每天记k次账,由于管家聪明能干,因而管家总是让财主十分满意. ...
- C++处理一个动态规划的问题
嗯哼,别人问的问题,看的我也头晕,百度了一下动态规划,看了看才想起来该怎么做,今天写了写代码,实现了~ 要求是递归,动态规划,想了想这种方法也是最简单的~ 所谓动态规划:把多阶段过程转化为一系列单阶段 ...
- linux:Nginx+https双向验证(数字安全证书)
本文由邓亚运提供 Nginx+https双向验证 说明: 要想实现nginx的https,nginx必须启用http_ssl模块:在编译时加上--with-http_ssl_module参数就ok.另 ...