mirror of https://github.com/portainer/portainer
27 lines
758 B
JavaScript
27 lines
758 B
JavaScript
angular.module('portainer.docker').controller('ContainerInspectController', [
|
|
'$scope',
|
|
'$transition$',
|
|
'Notifications',
|
|
'ContainerService',
|
|
'HttpRequestHelper',
|
|
function ($scope, $transition$, Notifications, ContainerService, HttpRequestHelper) {
|
|
$scope.state = {
|
|
DisplayTextView: false,
|
|
};
|
|
$scope.containerInfo = {};
|
|
|
|
function initView() {
|
|
HttpRequestHelper.setPortainerAgentTargetHeader($transition$.params().nodeName);
|
|
ContainerService.inspect($transition$.params().id)
|
|
.then(function success(d) {
|
|
$scope.containerInfo = d;
|
|
})
|
|
.catch(function error(e) {
|
|
Notifications.error('Failure', e, 'Unable to inspect container');
|
|
});
|
|
}
|
|
|
|
initView();
|
|
},
|
|
]);
|