2016-06-08 06:23:11 +00:00
< rd-header >
2016-07-07 01:17:44 +00:00
< rd-header-title title = "Container details" >
< i id = "loadingViewSpinner" class = "fa fa-cog fa-spin" > < / i >
< / rd-header-title >
2016-06-08 06:23:11 +00:00
< rd-header-content >
2016-11-02 05:14:52 +00:00
< a ui-sref = "containers" > Containers< / a > > < a ui-sref = "container({id: container.Id})" > {{ container.Name|trimcontainername }}< / a >
2016-06-08 06:23:11 +00:00
< / rd-header-content >
< / rd-header >
2016-06-02 05:34:03 +00:00
< div class = "row" >
2016-08-19 06:41:45 +00:00
< div class = "col-lg-12 col-md-12 col-xs-12" >
2016-06-02 05:34:03 +00:00
< rd-widget >
2016-08-19 06:41:45 +00:00
< rd-widget-header icon = "fa-cogs" title = "Actions" > < / rd-widget-header >
< rd-widget-body classes = "padding" >
< div class = "btn-group" role = "group" aria-label = "..." >
2016-10-27 08:33:39 +00:00
< button class = "btn btn-primary" ng-click = "start()" ng-if = "!container.State.Running" > < i class = "fa fa-play space-right" aria-hidden = "true" > < / i > Start< / button >
< button class = "btn btn-danger" ng-click = "stop()" ng-if = "container.State.Running" > < i class = "fa fa-stop space-right" aria-hidden = "true" > < / i > Stop< / button >
< button class = "btn btn-danger" ng-click = "kill()" ng-if = "container.State.Running" > < i class = "fa fa-bomb space-right" aria-hidden = "true" > < / i > Kill< / button >
< button class = "btn btn-primary" ng-click = "restart()" ng-if = "container.State.Running" > < i class = "fa fa-refresh space-right" aria-hidden = "true" > < / i > Restart< / button >
< button class = "btn btn-primary" ng-click = "pause()" ng-if = "container.State.Running && !container.State.Paused" > < i class = "fa fa-pause space-right" aria-hidden = "true" > < / i > Pause< / button >
< button class = "btn btn-primary" ng-click = "unpause()" ng-if = "container.State.Paused" > < i class = "fa fa-play space-right" aria-hidden = "true" > < / i > Resume< / button >
< button class = "btn btn-danger" ng-click = "remove()" ng-disabled = "container.State.Running" > < i class = "fa fa-trash space-right" aria-hidden = "true" > < / i > Remove< / button >
2016-06-02 05:34:03 +00:00
< / div >
< / rd-widget-body >
< / rd-widget >
< / div >
2016-08-19 06:41:45 +00:00
< / div >
< div class = "row" >
< div class = "col-lg-12 col-md-12 col-xs-12" >
2016-06-02 05:34:03 +00:00
< rd-widget >
2016-09-23 05:19:57 +00:00
< rd-widget-header icon = "fa-server" title = "Container status" > < / rd-widget-header >
2016-08-19 06:41:45 +00:00
< rd-widget-body classes = "no-padding" >
< table class = "table" >
< tbody >
< tr >
< td > Name< / td >
< td ng-if = "!container.edit" >
{{ container.Name|trimcontainername }}
< a href = "" data-toggle = "tooltip" title = "Edit container name" ng-click = "container.edit = true;" > < i class = "fa fa-edit" > < / i > < / a >
< / td >
< td ng-if = "container.edit" >
< input type = "text" class = "containerNameInput" ng-model = "container.newContainerName" >
< a href = "" ng-click = "container.edit = false;" > < i class = "fa fa-times" > < / i > < / a >
< a href = "" ng-click = "renameContainer()" > < i class = "fa fa-check-square-o" > < / i > < / a >
< / td >
< / tr >
< tr ng-if = "container.NetworkSettings.IPAddress" >
< td > IP address< / td >
< td > {{ container.NetworkSettings.IPAddress }}< / td >
< / tr >
< tr >
< td > Status< / td >
< td >
2016-10-27 08:33:39 +00:00
< i ng-class = "{true: 'fa fa-heartbeat space-right green-icon', false: 'fa fa-heartbeat space-right red-icon'}[container.State.Running]" > < / i >
2016-08-19 06:41:45 +00:00
{{ container.State|getstatetext }} since {{ activityTime }}< span ng-if = "!container.State.Running" > with exit code {{ container.State.ExitCode }}< / span >
< / td >
< / tr >
< tr ng-if = "container.State.Running" >
< td > Start time< / td >
< td > {{ container.State.StartedAt|getisodate }}< / td >
< / tr >
< tr ng-if = "!container.State.Running" >
< td > Finished< / td >
< td > {{ container.State.FinishedAt|getisodate }}< / td >
< / tr >
< tr >
< td colspan = "2" >
< div class = "btn-group" role = "group" aria-label = "..." >
2016-10-27 08:33:39 +00:00
< a class = "btn btn-outline-secondary" type = "button" ui-sref = "stats({id: container.Id})" > < i class = "fa fa-area-chart space-right" aria-hidden = "true" > < / i > Stats< / a >
< a class = "btn btn-outline-secondary" type = "button" ui-sref = "logs({id: container.Id})" > < i class = "fa fa-exclamation-circle space-right" aria-hidden = "true" > < / i > Logs< / a >
< a class = "btn btn-outline-secondary" type = "button" ui-sref = "console({id: container.Id})" > < i class = "fa fa-terminal space-right" aria-hidden = "true" > < / i > Console< / a >
2016-08-19 06:41:45 +00:00
< / div >
< / td >
< / tr >
< / tbody >
< / table >
2016-06-02 05:34:03 +00:00
< / rd-widget-body >
< / rd-widget >
< / div >
< / div >
2016-08-19 06:41:45 +00:00
2016-06-02 05:34:03 +00:00
< div class = "row" >
< div class = "col-lg-12 col-md-12 col-xs-12" >
< rd-widget >
2016-08-19 06:41:45 +00:00
< rd-widget-header icon = "fa-clone" title = "Create image" > < / rd-widget-header >
2016-06-02 05:34:03 +00:00
< rd-widget-body >
2016-08-19 06:41:45 +00:00
< form class = "form-horizontal" >
<!-- tag - description -->
< div class = "form-group" >
< div class = "col-sm-12" >
< span class = "small text-muted" >
You can create an image from this container, this allows you to backup important data or save
helpful configurations. You'll be able to spin up another container based on this image afterward.
< / span >
< / div >
2016-06-02 05:34:03 +00:00
< / div >
2016-08-19 06:41:45 +00:00
<!-- !tag - description -->
<!-- name - and - registry - inputs -->
< div class = "form-group" >
< label for = "image_name" class = "col-sm-1 control-label text-left" > Name< / label >
< div class = "col-sm-7" >
< input type = "text" class = "form-control" ng-model = "config.Image" id = "image_name" placeholder = "e.g. myImage:myTag" >
< / div >
< label for = "image_registry" class = "col-sm-1 control-label text-left" > Registry< / label >
< div class = "col-sm-3" >
< input type = "text" class = "form-control" ng-model = "config.Registry" id = "image_registry" placeholder = "optional" >
< / div >
2016-06-02 05:34:03 +00:00
< / div >
2016-08-19 06:41:45 +00:00
<!-- !name - and - registry - inputs -->
<!-- tag - note -->
< div class = "form-group" >
< div class = "col-sm-12" >
< span class = "small text-muted" > Note: if you don't specify the tag in the image name, < span class = "label label-default" > latest< / span > will be used.< / span >
< / div >
< / div >
<!-- !tag - note -->
< div class = "form-group" >
< div class = "col-sm-12" >
< button type = "button" class = "btn btn-default btn-sm" ng-disabled = "!config.Image" ng-click = "commit()" > Create< / button >
< i id = "createImageSpinner" class = "fa fa-cog fa-spin" style = "margin-left: 5px; display: none;" > < / i >
< / div >
< / div >
< / form >
2016-06-02 05:34:03 +00:00
< / rd-widget-body >
< / rd-widget >
< / div >
< / div >
2013-06-09 00:12:14 +00:00
2016-06-02 05:34:03 +00:00
< div class = "row" >
2016-08-19 06:41:45 +00:00
< div class = "col-lg-12 col-md-12 col-xs-12" >
2016-06-02 05:34:03 +00:00
< rd-widget >
2016-09-23 05:19:57 +00:00
< rd-widget-header icon = "fa-server" title = "Container details" > < / rd-widget-header >
2016-06-02 05:34:03 +00:00
< rd-widget-body classes = "no-padding" >
< table class = "table" >
< tbody >
< tr >
2016-08-19 06:41:45 +00:00
< td > Image< / td >
< td > < a ui-sref = "image({id: container.Image})" > {{ container.Image }}< / a > < / td >
2016-06-02 05:34:03 +00:00
< / tr >
2016-08-19 06:41:45 +00:00
< tr ng-if = "portBindings.length > 0" >
< td > Port configuration< / td >
2016-06-02 05:34:03 +00:00
< td >
2016-08-19 06:41:45 +00:00
< div ng-repeat = "portMapping in portBindings" >
{{ portMapping.container }} < i class = "fa fa-long-arrow-right" > < / i > {{ portMapping.host }}
< / div >
2016-06-02 05:34:03 +00:00
< / td >
< / tr >
< tr >
2016-08-19 06:41:45 +00:00
< td > CMD< / td >
< td > < code > {{ container.Config.Cmd|command }}< / code > < / td >
< / tr >
< tr >
< td > ENV< / td >
2016-06-02 05:34:03 +00:00
< td >
2016-08-19 06:41:45 +00:00
< table class = "table table-bordered table-condensed" >
< tr ng-repeat = "var in container.Config.Env" >
< td > {{ var|key: '=' }}< / td >
< td > {{ var|value: '=' }}< / td >
< / tr >
< / table >
2016-06-02 05:34:03 +00:00
< / td >
< / tr >
2016-08-19 06:41:45 +00:00
< tr ng-if = "!(container.Config.Labels | emptyobject)" >
2016-06-02 05:34:03 +00:00
< td > Labels< / td >
< td >
2016-08-19 06:41:45 +00:00
< table class = "table table-bordered table-condensed" >
2016-06-02 05:34:03 +00:00
< tr ng-repeat = "(k, v) in container.Config.Labels" >
< td > {{ k }}< / td >
< td > {{ v }}< / td >
< / tr >
2015-11-27 04:28:01 +00:00
< / table >
2016-06-02 05:34:03 +00:00
< / td >
< / tr >
< / tbody >
< / table >
< / rd-widget-body >
< / rd-widget >
< / div >
2016-08-19 06:41:45 +00:00
< / div >
< div class = "row" ng-if = "container.HostConfig.Binds.length > 0" >
< div class = "col-lg-12 col-md-12 col-xs-12" >
2016-06-02 05:34:03 +00:00
< rd-widget >
2016-08-19 06:41:45 +00:00
< rd-widget-header icon = "fa-cubes" title = "Volumes" > < / rd-widget-header >
2016-06-02 05:34:03 +00:00
< rd-widget-body classes = "no-padding" >
< table class = "table" >
2016-08-19 06:41:45 +00:00
< thead >
< tr >
< th > Host< / th >
< th > Container< / th >
< / tr >
< / thead >
2016-06-02 05:34:03 +00:00
< tbody >
2016-08-19 06:41:45 +00:00
< tr ng-repeat = "vol in container.HostConfig.Binds" >
< td > {{ vol|key: ':' }}< / td >
< td > {{ vol|value: ':' }}< / td >
2016-06-02 05:34:03 +00:00
< / tr >
< / tbody >
< / table >
< / rd-widget-body >
< / rd-widget >
< / div >
2016-08-19 06:41:45 +00:00
< / div >