mirror of https://github.com/portainer/portainer
parent
72cef567be
commit
d4c556752f
@ -0,0 +1,81 @@
|
|||||||
|
<div class="detail">
|
||||||
|
<h4>Image: {{ image.id }}</h4>
|
||||||
|
|
||||||
|
<table class="table table-striped">
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>Created:</td>
|
||||||
|
<td>{{ image.created }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Parent:</td>
|
||||||
|
<td>{{ image.parent }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Container:</td>
|
||||||
|
<td>{{ image.container }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Hostname:</td>
|
||||||
|
<td>{{ image.container_config.Hostname }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>User:</td>
|
||||||
|
<td>{{ image.container_config.User }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Cmd:</td>
|
||||||
|
<td>{{ image.container_config.Cmd }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Volumes:</td>
|
||||||
|
<td>{{ image.container_config.Volumes }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Volumes from:</td>
|
||||||
|
<td>{{ image.container_config.VolumesFrom }}</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<div class="row-fluid">
|
||||||
|
<div class="span1">
|
||||||
|
History:
|
||||||
|
</div>
|
||||||
|
<div class="span5">
|
||||||
|
<i class="icon-refresh" style="width:32px;height:32px;" ng-click="getHistory()"></i>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="well well-large">
|
||||||
|
<ul>
|
||||||
|
<li ng-repeat="change in history">
|
||||||
|
<strong>{{ change.Id }}</strong>: Created: {{ change.Created|getdate }} Created by: {{ change.CreatedBy }}
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<hr />
|
||||||
|
|
||||||
|
<div class="row-fluid">
|
||||||
|
<form>
|
||||||
|
<fieldset>
|
||||||
|
<legend>Add Tag</legend>
|
||||||
|
<label>Tag:</label>
|
||||||
|
<input type="text" placeholder="Tag..." ng-model="tag.tag" />
|
||||||
|
<label>Repo:</label>
|
||||||
|
<input type="text" placeholder="Repo..." ng-model="tag.repo" />
|
||||||
|
<label class="checkbox">
|
||||||
|
<input type="checkbox" ng-model="tag.force"/> Force?
|
||||||
|
</label>
|
||||||
|
<input type="button" ng-click="updateTag()" value="Update" />
|
||||||
|
</fieldset>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
<hr />
|
||||||
|
|
||||||
|
<div class="btn-remove">
|
||||||
|
<button class="btn btn-large btn-block btn-primary btn-danger" ng-click="remove()">Remove Image</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
@ -0,0 +1,21 @@
|
|||||||
|
|
||||||
|
<h2>Images:</h2>
|
||||||
|
|
||||||
|
<table class="table table-striped">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Id</th>
|
||||||
|
<th>Tag</th>
|
||||||
|
<th>Repository</th>
|
||||||
|
<th>Created</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr ng-repeat="image in images | orderBy:predicate">
|
||||||
|
<td><a href="/#/images/{{ image.Id }}/">{{ image.Id|truncate:10}}</a></td>
|
||||||
|
<td>{{ image.Tag }}</td>
|
||||||
|
<td>{{ image.Repository }}</td>
|
||||||
|
<td>{{ image.Created|getdate }}</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
Loading…
Reference in new issue