2014-01-06 20:20:58 +00:00
|
|
|
<div id="tagContextMenu" class="dropdown clearfix" tabindex="-1">
|
|
|
|
<ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu">
|
|
|
|
<li><a tabindex="-1" href="javascript:void(0)" ng-click="askDeleteTag(currentMenuTag)">Delete Tag</a></li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
2013-12-17 18:19:59 +00:00
|
|
|
<div class="resource-view" resource="repository" error-message="'No Repository Found'">
|
|
|
|
<div class="container repo">
|
|
|
|
<!-- Repo Header -->
|
|
|
|
<div class="header">
|
|
|
|
<h3>
|
|
|
|
<span class="repo-circle" repo="repo"></span>
|
|
|
|
<span style="color: #aaa;"> {{repo.namespace}}</span> <span style="color: #ccc">/</span> {{repo.name}}
|
|
|
|
<span class="settings-cog" ng-show="repo.can_admin" title="Repository Settings" bs-tooltip="tooltip.title" data-placement="bottom">
|
|
|
|
<a href="{{ '/repository/' + repo.namespace + '/' + repo.name + '/admin' }}">
|
|
|
|
<i class="fa fa-cog fa-lg"></i>
|
|
|
|
</a>
|
|
|
|
</span>
|
|
|
|
</h3>
|
|
|
|
|
|
|
|
<!-- Pull command -->
|
|
|
|
<div class="pull-command visible-md visible-lg" style="display: none;">
|
|
|
|
<span class="pull-command-title">Pull repository:</span>
|
|
|
|
<div class="pull-container">
|
|
|
|
<div class="input-group">
|
|
|
|
<input id="pull-text" type="text" class="form-control" value="{{ 'docker pull quay.io/' + repo.namespace + '/' + repo.name }}" readonly>
|
|
|
|
<span id="copyClipboard" class="input-group-addon" title="Copy to Clipboard" data-clipboard-target="pull-text">
|
|
|
|
<i class="fa fa-copy"></i>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
2013-09-27 19:48:54 +00:00
|
|
|
|
2013-12-17 18:19:59 +00:00
|
|
|
<div id="clipboardCopied" class="hovering" style="display: none">
|
|
|
|
Copied to clipboard
|
2013-10-01 23:36:57 +00:00
|
|
|
</div>
|
2013-09-27 20:12:51 +00:00
|
|
|
</div>
|
2013-12-17 18:19:59 +00:00
|
|
|
</div>
|
2013-09-27 20:28:21 +00:00
|
|
|
|
2013-12-17 18:19:59 +00:00
|
|
|
<!-- Status boxes -->
|
|
|
|
<div class="status-boxes">
|
|
|
|
<div id="buildInfoBox" class="status-box" ng-show="repo.is_building"
|
|
|
|
bs-popover="'static/partials/build-status-item.html'" data-placement="bottom">
|
|
|
|
<span class="title">
|
2013-12-18 03:56:28 +00:00
|
|
|
<span class="quay-spinner"></span>
|
2013-12-17 18:19:59 +00:00
|
|
|
<b>Building Images</b>
|
|
|
|
</span>
|
|
|
|
<span class="count" ng-class="buildsInfo ? 'visible' : ''"><span>{{ buildsInfo ? buildsInfo.length : '-' }}</span></span>
|
2013-09-27 20:28:21 +00:00
|
|
|
</div>
|
2013-09-26 22:21:29 +00:00
|
|
|
</div>
|
2013-09-26 21:59:20 +00:00
|
|
|
|
2013-12-17 18:19:59 +00:00
|
|
|
<!-- Description -->
|
|
|
|
<div class="description markdown-input" content="repo.description" can-write="repo.can_write"
|
|
|
|
content-changed="updateForDescription" field-title="'repository description'"></div>
|
2013-09-27 20:12:51 +00:00
|
|
|
|
2013-12-17 18:19:59 +00:00
|
|
|
<!-- Empty message -->
|
|
|
|
<div class="repo-content" ng-show="!currentTag.image && !repo.is_building">
|
|
|
|
<div class="empty-message">
|
|
|
|
This repository is empty
|
|
|
|
</div>
|
2013-09-26 22:21:29 +00:00
|
|
|
|
2013-12-17 18:19:59 +00:00
|
|
|
<div class="empty-description" ng-show="repo.can_write">
|
|
|
|
To push images to this repository:<br><br>
|
|
|
|
<pre>sudo docker tag <i>0u123imageidgoeshere</i> quay.io/{{repo.namespace}}/{{repo.name}}
|
2013-12-18 22:04:07 +00:00
|
|
|
sudo docker push quay.io/{{repo.namespace}}/{{repo.name}}</pre>
|
2013-12-17 18:19:59 +00:00
|
|
|
</div>
|
2013-11-21 21:03:11 +00:00
|
|
|
</div>
|
|
|
|
|
2013-12-17 18:19:59 +00:00
|
|
|
<div class="repo-content" ng-show="!currentTag.image && repo.is_building">
|
|
|
|
<div class="empty-message">
|
|
|
|
Your build is currently processing, if this takes longer than an hour, please contact <a href="mailto:support@quay.io">Quay.io support</a>
|
|
|
|
</div>
|
2013-11-21 21:03:11 +00:00
|
|
|
</div>
|
2013-09-26 21:59:20 +00:00
|
|
|
|
2013-12-17 18:19:59 +00:00
|
|
|
<!-- Content view -->
|
|
|
|
<div class="repo-content" ng-show="currentTag.image">
|
|
|
|
<!-- Image History -->
|
|
|
|
<div id="image-history" style="max-height: 10px;">
|
|
|
|
<div class="row">
|
|
|
|
<!-- Tree View container -->
|
|
|
|
<div class="col-md-8">
|
|
|
|
<div class="panel panel-default">
|
2014-01-06 20:20:58 +00:00
|
|
|
<div class="panel-heading tag-heading">
|
2013-12-17 18:19:59 +00:00
|
|
|
<!-- Tag dropdown -->
|
|
|
|
<div class="tag-dropdown dropdown" title="Tags" bs-tooltip="tooltip.title" data-placement="top">
|
|
|
|
<i class="fa fa-tag"><span class="tag-count">{{getTagCount(repo)}}</span></i>
|
|
|
|
<a href="javascript:void(0)" class="dropdown-toggle" data-toggle="dropdown">{{currentTag.name}} <b class="caret"></b></a>
|
|
|
|
<ul class="dropdown-menu">
|
|
|
|
<li ng-repeat="tag in repo.tags">
|
|
|
|
<a href="javascript:void(0)" ng-click="setTag(tag.name)">{{tag.name}}</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<span class="right-title">Tags</span>
|
2014-01-06 20:20:58 +00:00
|
|
|
<span class="tag-controls" ng-show="repo.can_admin">
|
|
|
|
<a href="javascript:void(0)" ng-click="askDeleteTag(currentTag.name)">Delete Tag</a>
|
|
|
|
</span>
|
2013-10-29 17:41:26 +00:00
|
|
|
</div>
|
2013-10-12 01:28:02 +00:00
|
|
|
|
2013-12-17 18:19:59 +00:00
|
|
|
<!-- Image history tree -->
|
|
|
|
<div class="resource-view" resource="imageHistory">
|
|
|
|
<div id="image-history-container" onresize="tree.notifyResized()"></div>
|
2013-10-29 17:41:26 +00:00
|
|
|
</div>
|
2013-12-17 18:19:59 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Side Panel -->
|
|
|
|
<div class="col-md-4">
|
|
|
|
<div class="panel panel-default">
|
|
|
|
<div class="panel-heading">
|
|
|
|
<!-- Image dropdown -->
|
|
|
|
<div class="tag-dropdown dropdown" title="Images" bs-tooltip="tooltip.title" data-placement="top">
|
|
|
|
<i class="fa fa-archive"><span class="tag-count">{{imageHistory.value.length}}</span></i>
|
|
|
|
<a href="javascript:void(0)" class="dropdown-toggle" data-toggle="dropdown">{{currentImage.id.substr(0, 12)}} <b class="caret"></b></a>
|
|
|
|
<ul class="dropdown-menu">
|
|
|
|
<li ng-repeat="image in imageHistory.value">
|
|
|
|
<a href="javascript:void(0)" ng-click="setImage(image)">{{image.id.substr(0, 12)}}</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
2013-10-20 17:47:47 +00:00
|
|
|
</div>
|
2013-12-17 18:19:59 +00:00
|
|
|
<span class="right-title">Image</span>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="panel-body">
|
|
|
|
<div id="current-image">
|
|
|
|
<div ng-show="currentImage.comment">
|
|
|
|
<blockquote style="margin-top: 10px;">
|
|
|
|
<span class="markdown-view" content="currentImage.comment"></span>
|
|
|
|
</blockquote>
|
2013-10-20 17:47:47 +00:00
|
|
|
</div>
|
|
|
|
|
2013-12-17 18:19:59 +00:00
|
|
|
<dl class="dl-normal">
|
|
|
|
<dt>Created</dt>
|
|
|
|
<dd am-time-ago="parseDate(currentImage.created)"></dd>
|
|
|
|
<dt>Image ID</dt>
|
|
|
|
<dd><a href="{{'/repository/' + repo.namespace + '/' + repo.name + '/image/' + currentImage.id}}">{{ currentImage.id }}</a></dd>
|
2014-01-03 21:32:00 +00:00
|
|
|
<dt>Compressed Image Size</dt>
|
|
|
|
<dd><span class="context-tooltip"
|
|
|
|
title="The amount of data sent between Docker and Quay.io when pushing/pulling"
|
|
|
|
bs-tooltip="tooltip.title" data-container="body">{{ currentImage.size | bytes }}</span>
|
|
|
|
</dd>
|
2013-12-17 18:19:59 +00:00
|
|
|
</dl>
|
|
|
|
|
|
|
|
<!-- Image changes loading -->
|
|
|
|
<div class="resource-view" resource="currentImageChangeResource">
|
|
|
|
<div class="changes-container small-changes-container"
|
|
|
|
ng-show="currentImageChanges.changed.length || currentImageChanges.added.length || currentImageChanges.removed.length">
|
|
|
|
<div class="changes-count-container accordion-toggle" data-toggle="collapse" data-parent="#accordion" data-target="#collapseChanges">
|
|
|
|
<span class="change-count added" ng-show="currentImageChanges.added.length > 0" title="Files Added"
|
|
|
|
bs-tooltip="tooltip.title" data-placement="top">
|
|
|
|
<i class="fa fa-plus-square"></i>
|
|
|
|
<b>{{currentImageChanges.added.length}}</b>
|
|
|
|
</span>
|
|
|
|
<span class="change-count removed" ng-show="currentImageChanges.removed.length > 0" title="Files Removed"
|
|
|
|
bs-tooltip="tooltip.title" data-placement="top">
|
|
|
|
<i class="fa fa-minus-square"></i>
|
|
|
|
<b>{{currentImageChanges.removed.length}}</b>
|
|
|
|
</span>
|
|
|
|
<span class="change-count changed" ng-show="currentImageChanges.changed.length > 0" title="Files Changed"
|
|
|
|
bs-tooltip="tooltip.title" data-placement="top">
|
|
|
|
<i class="fa fa-pencil-square"></i>
|
|
|
|
<b>{{currentImageChanges.changed.length}}</b>
|
|
|
|
</span>
|
2013-10-20 17:47:47 +00:00
|
|
|
</div>
|
2013-12-17 18:19:59 +00:00
|
|
|
|
|
|
|
<div id="collapseChanges" class="panel-collapse collapse in">
|
|
|
|
<div class="well well-sm">
|
|
|
|
<div class="change added" ng-repeat="file in currentImageChanges.added | limitTo:5">
|
|
|
|
<i class="fa fa-plus-square"></i>
|
|
|
|
<span title="{{file}}">{{file}}</span>
|
|
|
|
</div>
|
|
|
|
<div class="change removed" ng-repeat="file in currentImageChanges.removed | limitTo:5">
|
|
|
|
<i class="fa fa-minus-square"></i>
|
|
|
|
<span title="{{file}}">{{file}}</span>
|
|
|
|
</div>
|
|
|
|
<div class="change changed" ng-repeat="file in currentImageChanges.changed | limitTo:5">
|
|
|
|
<i class="fa fa-pencil-square"></i>
|
|
|
|
<span title="{{file}}">{{file}}</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="more-changes" ng-show="getMoreCount(currentImageChanges) > 0">
|
|
|
|
<a href="{{'/repository/' + repo.namespace + '/' + repo.name + '/image/' + currentImage.id}}">
|
|
|
|
And {{getMoreCount(currentImageChanges)}} more...
|
|
|
|
</a>
|
|
|
|
</div>
|
2013-10-20 17:47:47 +00:00
|
|
|
</div>
|
2013-12-17 18:19:59 +00:00
|
|
|
</div>
|
2013-10-20 17:47:47 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2013-12-17 18:19:59 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2013-10-12 01:28:02 +00:00
|
|
|
</div>
|
2013-10-02 04:43:59 +00:00
|
|
|
</div>
|
2013-09-27 21:01:45 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2013-09-26 21:59:20 +00:00
|
|
|
</div>
|
2014-01-06 20:20:58 +00:00
|
|
|
|
|
|
|
<!-- Modal message dialog -->
|
|
|
|
<div class="modal fade" id="confirmdeleteTagModal">
|
|
|
|
<div class="modal-dialog">
|
|
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
|
|
|
<h4 class="modal-title">Delete tag <span class="label label-default tag">{{ tagToDelete }}</span>?</h4>
|
|
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
|
|
Are you sure you want to delete tag <span class="label label-default tag">{{ tagToDelete }}</span>?
|
|
|
|
<br><br>
|
|
|
|
Doing so will delete any images no attached to another tag.
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
|
|
<button type="button" class="btn btn-primary" ng-click="deleteTag(tagToDelete)">Delete Tag</button>
|
|
|
|
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
|
|
|
|
</div>
|
|
|
|
</div><!-- /.modal-content -->
|
|
|
|
</div><!-- /.modal-dialog -->
|
|
|
|
</div><!-- /.modal -->
|
|
|
|
|