2013-06-18 23:28:22 +00:00
< div ng-include = "template" ng-controller = "StartContainerController" > < / div >
2013-08-08 19:18:51 +00:00
< div class = "alert alert-error" id = "error-message" style = "display:none" >
{{ error }}
< / div >
2013-06-15 00:37:00 +00:00
< div class = "detail" >
2013-06-18 23:28:22 +00:00
2013-09-03 00:08:06 +00:00
< h4 > Image: {{ tag }}< / h4 >
2013-06-09 23:11:40 +00:00
2013-06-18 23:28:22 +00:00
< div class = "btn-group detail" >
2014-11-03 05:37:34 +00:00
< button class = "btn btn-success" data-toggle = "modal" data-target = "#create-modal" > Create< / button >
2013-06-18 23:28:22 +00:00
< / div >
2013-09-02 23:54:53 +00:00
< div >
< h4 > Containers created:< / h4 >
< canvas id = "containers-started-chart" width = "750" >
2015-02-13 07:13:04 +00:00
< p class = "browserupgrade" > You are using an < strong > outdated< / strong > browser. Please < a href = "http://browsehappy.com/" > upgrade your browser< / a > to improve your experience.< / p >
2013-09-02 23:54:53 +00:00
< / canvas >
< / div >
2013-06-18 23:28:22 +00:00
2013-06-09 23:11:40 +00:00
< table class = "table table-striped" >
< tbody >
< tr >
< td > Created:< / td >
2015-02-13 20:20:23 +00:00
< td > {{ image.Created }}< / td >
2013-06-09 23:11:40 +00:00
< / tr >
< tr >
< td > Parent:< / td >
2015-02-13 20:20:23 +00:00
< td > < a href = "#/images/{{ image.Parent }}/" > {{ image.Parent }}< / a > < / td >
2013-06-09 23:11:40 +00:00
< / tr >
2013-06-22 18:23:25 +00:00
< tr >
2015-02-13 20:20:23 +00:00
< td > Size (Virtual Size):< / td >
< td > {{ image.Size|humansize }} ({{ image.VirtualSize|humansize }})< / td >
2013-06-22 18:23:25 +00:00
< / tr >
2013-06-09 23:11:40 +00:00
< tr >
< td > Hostname:< / td >
2015-02-13 20:20:23 +00:00
< td > {{ image.ContainerConfig.Hostname }}< / td >
2013-06-09 23:11:40 +00:00
< / tr >
< tr >
< td > User:< / td >
2015-02-13 20:20:23 +00:00
< td > {{ image.ContainerConfig.User }}< / td >
2013-06-09 23:11:40 +00:00
< / tr >
< tr >
< td > Cmd:< / td >
2015-02-13 20:20:23 +00:00
< td > {{ image.ContainerConfig.Cmd }}< / td >
2013-06-09 23:11:40 +00:00
< / tr >
< tr >
< td > Volumes:< / td >
2015-02-13 20:20:23 +00:00
< td > {{ image.ContainerConfig.Volumes }}< / td >
2013-06-09 23:11:40 +00:00
< / tr >
< tr >
< td > Volumes from:< / td >
2015-02-13 20:20:23 +00:00
< td > {{ image.ContainerConfig.VolumesFrom }}< / td >
2013-06-09 23:11:40 +00:00
< / tr >
2013-06-22 18:23:25 +00:00
< tr >
2015-02-13 20:20:23 +00:00
< td > Built with:< / td >
< td > Docker {{ image.DockerVersion }} on {{ image.Os}}, {{ image.Architecture }}< / td >
2013-06-22 18:23:25 +00:00
< / tr >
2013-06-09 23:11:40 +00:00
< / tbody >
< / table >
2013-06-22 18:23:25 +00:00
2013-06-09 23:11:40 +00:00
< 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" >
2014-11-03 05:37:34 +00:00
< form class = "form-inline" role = "form" >
2013-06-09 23:11:40 +00:00
< fieldset >
2013-06-15 01:02:22 +00:00
< legend > Tag image< / legend >
2014-11-03 05:37:34 +00:00
< div class = "form-group" >
< label > Tag:< / label >
< input type = "text" placeholder = "repo..." ng-model = "tag.repo" class = "form-control" >
< / div >
< div class = "form-group" >
< label class = "checkbox" >
< input type = "checkbox" ng-model = "tag.force" class = "form-control" / > Force?
< / label >
< / div >
< input type = "button" ng-click = "updateTag()" value = "Tag" class = "btn btn-primary" / >
2013-06-09 23:11:40 +00:00
< / fieldset >
< / form >
< / div >
2013-06-10 02:16:37 +00:00
< hr / >
2013-06-09 23:11:40 +00:00
< div class = "btn-remove" >
< button class = "btn btn-large btn-block btn-primary btn-danger" ng-click = "remove()" > Remove Image< / button >
< / div >
< / div >