2018-02-01 12:27:52 +00:00
|
|
|
angular.module('portainer.docker')
|
2018-05-06 07:15:57 +00:00
|
|
|
.controller('ContainerController', ['$q', '$scope', '$state','$transition$', '$filter', 'Commit', 'ContainerHelper', 'ContainerService', 'ImageHelper', 'NetworkService', 'Notifications', 'ModalService', 'ResourceControlService', 'RegistryService', 'ImageService', 'HttpRequestHelper',
|
|
|
|
function ($q, $scope, $state, $transition$, $filter, Commit, ContainerHelper, ContainerService, ImageHelper, NetworkService, Notifications, ModalService, ResourceControlService, RegistryService, ImageService, HttpRequestHelper) {
|
2016-08-19 06:41:45 +00:00
|
|
|
$scope.activityTime = 0;
|
|
|
|
$scope.portBindings = [];
|
2017-12-06 11:04:02 +00:00
|
|
|
|
2016-08-19 06:41:45 +00:00
|
|
|
$scope.config = {
|
|
|
|
Image: '',
|
|
|
|
Registry: ''
|
2016-06-02 05:34:03 +00:00
|
|
|
};
|
2017-12-06 11:04:02 +00:00
|
|
|
|
2017-11-12 19:27:28 +00:00
|
|
|
$scope.state = {
|
2017-12-05 16:46:11 +00:00
|
|
|
recreateContainerInProgress: false,
|
2017-11-12 19:27:28 +00:00
|
|
|
joinNetworkInProgress: false,
|
2017-12-06 11:04:02 +00:00
|
|
|
leaveNetworkInProgress: false
|
2017-01-24 01:28:40 +00:00
|
|
|
};
|
2016-06-02 05:34:03 +00:00
|
|
|
|
2018-08-16 09:31:00 +00:00
|
|
|
$scope.updateRestartPolicy = updateRestartPolicy;
|
|
|
|
|
2016-06-02 05:34:03 +00:00
|
|
|
var update = function () {
|
2018-05-06 07:15:57 +00:00
|
|
|
var nodeName = $transition$.params().nodeName;
|
|
|
|
HttpRequestHelper.setPortainerAgentTargetHeader(nodeName);
|
|
|
|
$scope.nodeName = nodeName;
|
|
|
|
|
|
|
|
ContainerService.container($transition$.params().id)
|
|
|
|
.then(function success(data) {
|
|
|
|
var container = data;
|
2017-05-23 18:56:10 +00:00
|
|
|
$scope.container = container;
|
2016-06-02 05:34:03 +00:00
|
|
|
$scope.container.edit = false;
|
2017-05-23 18:56:10 +00:00
|
|
|
$scope.container.newContainerName = $filter('trimcontainername')(container.Name);
|
2016-06-02 05:34:03 +00:00
|
|
|
|
2017-05-23 18:56:10 +00:00
|
|
|
if (container.State.Running) {
|
|
|
|
$scope.activityTime = moment.duration(moment(container.State.StartedAt).utc().diff(moment().utc())).humanize();
|
|
|
|
} else if (container.State.Status === 'created') {
|
|
|
|
$scope.activityTime = moment.duration(moment(container.Created).utc().diff(moment().utc())).humanize();
|
2016-08-19 06:41:45 +00:00
|
|
|
} else {
|
2017-05-23 18:56:10 +00:00
|
|
|
$scope.activityTime = moment.duration(moment().utc().diff(moment(container.State.FinishedAt).utc())).humanize();
|
2016-06-02 05:34:03 +00:00
|
|
|
}
|
|
|
|
|
2016-08-19 06:41:45 +00:00
|
|
|
$scope.portBindings = [];
|
2017-05-23 18:56:10 +00:00
|
|
|
if (container.NetworkSettings.Ports) {
|
|
|
|
angular.forEach(Object.keys(container.NetworkSettings.Ports), function(portMapping) {
|
|
|
|
if (container.NetworkSettings.Ports[portMapping]) {
|
2016-08-19 06:41:45 +00:00
|
|
|
var mapping = {};
|
|
|
|
mapping.container = portMapping;
|
2017-05-23 18:56:10 +00:00
|
|
|
mapping.host = container.NetworkSettings.Ports[portMapping][0].HostIp + ':' + container.NetworkSettings.Ports[portMapping][0].HostPort;
|
2016-08-19 06:41:45 +00:00
|
|
|
$scope.portBindings.push(mapping);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2018-05-06 07:15:57 +00:00
|
|
|
})
|
|
|
|
.catch(function error(err) {
|
|
|
|
Notifications.error('Failure', err, 'Unable to retrieve container info');
|
2016-06-02 05:34:03 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2018-05-06 07:15:57 +00:00
|
|
|
function executeContainerAction(id, action, successMessage, errorMessage) {
|
|
|
|
action(id)
|
|
|
|
.then(function success(data) {
|
|
|
|
Notifications.success(successMessage, id);
|
2016-06-02 05:34:03 +00:00
|
|
|
update();
|
2018-05-06 07:15:57 +00:00
|
|
|
})
|
|
|
|
.catch(function error(err) {
|
|
|
|
Notifications.error('Failure', err, errorMessage);
|
2016-06-02 05:34:03 +00:00
|
|
|
});
|
2018-05-06 07:15:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$scope.start = function () {
|
|
|
|
var successMessage = 'Container successfully started';
|
|
|
|
var errorMessage = 'Unable to start container';
|
|
|
|
executeContainerAction($transition$.params().id, ContainerService.startContainer, successMessage, errorMessage);
|
2016-06-02 05:34:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
$scope.stop = function () {
|
2018-05-06 07:15:57 +00:00
|
|
|
var successMessage = 'Container successfully stopped';
|
|
|
|
var errorMessage = 'Unable to stop container';
|
|
|
|
executeContainerAction($transition$.params().id, ContainerService.stopContainer, successMessage, errorMessage);
|
2016-06-02 05:34:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
$scope.kill = function () {
|
2018-05-06 07:15:57 +00:00
|
|
|
var successMessage = 'Container successfully killed';
|
|
|
|
var errorMessage = 'Unable to kill container';
|
|
|
|
executeContainerAction($transition$.params().id, ContainerService.killContainer, successMessage, errorMessage);
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.pause = function() {
|
|
|
|
var successMessage = 'Container successfully paused';
|
|
|
|
var errorMessage = 'Unable to pause container';
|
|
|
|
executeContainerAction($transition$.params().id, ContainerService.pauseContainer, successMessage, errorMessage);
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.unpause = function() {
|
|
|
|
var successMessage = 'Container successfully resumed';
|
|
|
|
var errorMessage = 'Unable to resume container';
|
|
|
|
executeContainerAction($transition$.params().id, ContainerService.resumeContainer, successMessage, errorMessage);
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.restart = function () {
|
|
|
|
var successMessage = 'Container successfully restarted';
|
|
|
|
var errorMessage = 'Unable to restart container';
|
|
|
|
executeContainerAction($transition$.params().id, ContainerService.restartContainer, successMessage, errorMessage);
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.renameContainer = function () {
|
|
|
|
var container = $scope.container;
|
|
|
|
ContainerService.renameContainer($transition$.params().id, container.newContainerName)
|
|
|
|
.then(function success(data) {
|
|
|
|
container.Name = container.newContainerName;
|
|
|
|
Notifications.success('Container successfully renamed', container.Name);
|
|
|
|
})
|
|
|
|
.catch(function error(err) {
|
|
|
|
container.newContainerName = container.Name;
|
|
|
|
Notifications.error('Failure', err, 'Unable to rename container');
|
|
|
|
})
|
|
|
|
.finally(function final() {
|
|
|
|
$scope.container.edit = false;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.containerLeaveNetwork = function containerLeaveNetwork(container, networkId) {
|
|
|
|
$scope.state.leaveNetworkInProgress = true;
|
|
|
|
NetworkService.disconnectContainer(networkId, container.Id, false)
|
|
|
|
.then(function success(data) {
|
|
|
|
Notifications.success('Container left network', container.Id);
|
|
|
|
$state.reload();
|
|
|
|
})
|
|
|
|
.catch(function error(err) {
|
|
|
|
Notifications.error('Failure', err, 'Unable to disconnect container from network');
|
|
|
|
})
|
|
|
|
.finally(function final() {
|
|
|
|
$scope.state.leaveNetworkInProgress = false;
|
2016-06-02 05:34:03 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2018-05-06 07:15:57 +00:00
|
|
|
$scope.containerJoinNetwork = function containerJoinNetwork(container, networkId) {
|
|
|
|
$scope.state.joinNetworkInProgress = true;
|
|
|
|
NetworkService.connectContainer(networkId, container.Id)
|
|
|
|
.then(function success(data) {
|
|
|
|
Notifications.success('Container joined network', container.Id);
|
|
|
|
$state.reload();
|
|
|
|
})
|
|
|
|
.catch(function error(err) {
|
|
|
|
Notifications.error('Failure', err, 'Unable to connect container to network');
|
|
|
|
})
|
|
|
|
.finally(function final() {
|
|
|
|
$scope.state.joinNetworkInProgress = false;
|
|
|
|
});
|
|
|
|
};
|
2018-05-28 14:40:33 +00:00
|
|
|
|
2016-06-02 05:34:03 +00:00
|
|
|
$scope.commit = function () {
|
2016-12-31 00:25:42 +00:00
|
|
|
var image = $scope.config.Image;
|
|
|
|
var registry = $scope.config.Registry;
|
2017-07-05 17:06:28 +00:00
|
|
|
var imageConfig = ImageHelper.createImageConfigForCommit(image, registry.URL);
|
2018-02-28 06:19:06 +00:00
|
|
|
Commit.commitContainer({id: $transition$.params().id, tag: imageConfig.tag, repo: imageConfig.repo}, function (d) {
|
2016-09-02 05:40:03 +00:00
|
|
|
update();
|
2017-09-21 14:00:53 +00:00
|
|
|
Notifications.success('Container commited', $transition$.params().id);
|
2016-06-02 05:34:03 +00:00
|
|
|
}, function (e) {
|
2016-09-02 05:40:03 +00:00
|
|
|
update();
|
2017-05-23 18:56:10 +00:00
|
|
|
Notifications.error('Failure', e, 'Unable to commit container');
|
2016-06-02 05:34:03 +00:00
|
|
|
});
|
|
|
|
};
|
2016-08-19 06:41:45 +00:00
|
|
|
|
2016-06-02 05:34:03 +00:00
|
|
|
|
2017-04-25 08:20:57 +00:00
|
|
|
$scope.confirmRemove = function () {
|
2017-05-01 10:18:06 +00:00
|
|
|
var title = 'You are about to remove a container.';
|
2017-04-25 08:20:57 +00:00
|
|
|
if ($scope.container.State.Running) {
|
2017-05-01 10:18:06 +00:00
|
|
|
title = 'You are about to remove a running container.';
|
2017-04-25 08:20:57 +00:00
|
|
|
}
|
2017-05-01 10:18:06 +00:00
|
|
|
ModalService.confirmContainerDeletion(
|
|
|
|
title,
|
|
|
|
function (result) {
|
|
|
|
if(!result) { return; }
|
|
|
|
var cleanAssociatedVolumes = false;
|
|
|
|
if (result[0]) {
|
|
|
|
cleanAssociatedVolumes = true;
|
|
|
|
}
|
2018-05-06 07:15:57 +00:00
|
|
|
removeContainer(cleanAssociatedVolumes);
|
2017-05-01 10:18:06 +00:00
|
|
|
}
|
|
|
|
);
|
2017-04-25 08:20:57 +00:00
|
|
|
};
|
|
|
|
|
2018-05-06 07:15:57 +00:00
|
|
|
function removeContainer(cleanAssociatedVolumes) {
|
2017-05-23 18:56:10 +00:00
|
|
|
ContainerService.remove($scope.container, cleanAssociatedVolumes)
|
|
|
|
.then(function success() {
|
|
|
|
Notifications.success('Container successfully removed');
|
2018-02-01 12:27:52 +00:00
|
|
|
$state.go('docker.containers', {}, {reload: true});
|
2017-05-23 18:56:10 +00:00
|
|
|
})
|
|
|
|
.catch(function error(err) {
|
|
|
|
Notifications.error('Failure', err, 'Unable to remove container');
|
2016-06-02 05:34:03 +00:00
|
|
|
});
|
2018-05-06 07:15:57 +00:00
|
|
|
}
|
2017-08-13 10:55:52 +00:00
|
|
|
|
|
|
|
function recreateContainer(pullImage) {
|
|
|
|
var container = $scope.container;
|
|
|
|
var config = ContainerHelper.configFromContainer(container.Model);
|
2017-12-05 16:46:11 +00:00
|
|
|
$scope.state.recreateContainerInProgress = true;
|
2018-08-13 19:13:43 +00:00
|
|
|
var isRunning = container.State.Running;
|
|
|
|
|
|
|
|
return stopContainerIfNeeded()
|
|
|
|
.then(renameContainer)
|
|
|
|
.then(pullImageIfNeeded)
|
|
|
|
.then(setMainNetworkAndCreateContainer)
|
|
|
|
.then(connectContainerToOtherNetworks)
|
|
|
|
.then(startContainerIfNeeded)
|
|
|
|
.then(createResourceControlIfNeeded)
|
|
|
|
.then(deleteOldContainer)
|
|
|
|
.then(notifyAndChangeView)
|
|
|
|
.catch(notifyOnError);
|
|
|
|
|
|
|
|
function stopContainerIfNeeded() {
|
|
|
|
if (!isRunning) {
|
|
|
|
return $q.when();
|
|
|
|
}
|
|
|
|
return ContainerService.stopContainer(container.Id);
|
|
|
|
}
|
|
|
|
|
|
|
|
function renameContainer() {
|
|
|
|
return ContainerService.renameContainer(container.Id, container.Name + '-old');
|
|
|
|
}
|
|
|
|
|
|
|
|
function pullImageIfNeeded() {
|
|
|
|
if (!pullImage) {
|
|
|
|
return $q.when();
|
|
|
|
}
|
|
|
|
return getRegistry().then(function pullImage(containerRegistery) {
|
|
|
|
return ImageService.pullImage(container.Config.Image, containerRegistery, true);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function getRegistry() {
|
2017-08-13 10:55:52 +00:00
|
|
|
return RegistryService.retrieveRegistryFromRepository(container.Config.Image);
|
2018-08-13 19:13:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function setMainNetworkAndCreateContainer() {
|
|
|
|
var networks = config.NetworkingConfig.EndpointsConfig;
|
|
|
|
var networksNames = Object.keys(networks);
|
|
|
|
if (networksNames.length > 1) {
|
|
|
|
config.NetworkingConfig.EndpointsConfig = {};
|
|
|
|
config.NetworkingConfig.EndpointsConfig[networksNames[0]] = networks[0];
|
|
|
|
}
|
|
|
|
return $q.all([ContainerService.createContainer(config), networks]);
|
|
|
|
}
|
|
|
|
|
|
|
|
function connectContainerToOtherNetworks(createContainerData) {
|
|
|
|
var newContainer = createContainerData[0];
|
|
|
|
var networks = createContainerData[1];
|
|
|
|
var networksNames = Object.keys(networks);
|
|
|
|
var connectionPromises = networksNames.map(function connectToNetwork(name) {
|
|
|
|
NetworkService.connectContainer(name, newContainer.Id);
|
|
|
|
});
|
|
|
|
return $q.all(connectionPromises)
|
|
|
|
.then(function onConnectToNetworkSuccess() {
|
|
|
|
return newContainer;
|
2017-08-13 10:55:52 +00:00
|
|
|
});
|
2018-08-13 19:13:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function deleteOldContainer(newContainer) {
|
|
|
|
return ContainerService.remove(container, true).then(
|
|
|
|
function onRemoveSuccess() {
|
|
|
|
return newContainer;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function startContainerIfNeeded(newContainer) {
|
|
|
|
if (!isRunning) {
|
|
|
|
return $q.when(newContainer);
|
2017-08-13 10:55:52 +00:00
|
|
|
}
|
2018-08-13 19:13:43 +00:00
|
|
|
return ContainerService.startContainer(newContainer.Id).then(
|
|
|
|
function onStartSuccess() {
|
|
|
|
return newContainer;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function createResourceControlIfNeeded(newContainer) {
|
|
|
|
if (!container.ResourceControl) {
|
|
|
|
return $q.when();
|
|
|
|
}
|
|
|
|
var containerIdentifier = newContainer.Id;
|
|
|
|
var resourceControl = container.ResourceControl;
|
|
|
|
var users = resourceControl.UserAccesses.map(function(u) {
|
|
|
|
return u.UserId;
|
|
|
|
});
|
|
|
|
var teams = resourceControl.TeamAccesses.map(function(t) {
|
|
|
|
return t.TeamId;
|
|
|
|
});
|
2018-08-19 05:57:28 +00:00
|
|
|
return ResourceControlService.createResourceControl(resourceControl.Public, users, teams, containerIdentifier, 'container', []);
|
2018-08-13 19:13:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function notifyAndChangeView() {
|
2017-08-13 10:55:52 +00:00
|
|
|
Notifications.success('Container successfully re-created');
|
2018-08-13 19:13:43 +00:00
|
|
|
$state.go('docker.containers', {}, { reload: true });
|
|
|
|
}
|
|
|
|
|
|
|
|
function notifyOnError(err) {
|
2017-08-13 10:55:52 +00:00
|
|
|
Notifications.error('Failure', err, 'Unable to re-create container');
|
2017-12-05 16:46:11 +00:00
|
|
|
$scope.state.recreateContainerInProgress = false;
|
2018-08-13 19:13:43 +00:00
|
|
|
}
|
2017-08-13 10:55:52 +00:00
|
|
|
}
|
|
|
|
|
2017-08-13 10:17:41 +00:00
|
|
|
$scope.recreate = function() {
|
2017-11-07 08:20:59 +00:00
|
|
|
ModalService.confirmContainerRecreation(function (result) {
|
|
|
|
if(!result) { return; }
|
|
|
|
var pullImage = false;
|
|
|
|
if (result[0]) {
|
|
|
|
pullImage = true;
|
|
|
|
}
|
|
|
|
recreateContainer(pullImage);
|
2017-08-13 10:17:41 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2018-08-16 09:31:00 +00:00
|
|
|
function updateRestartPolicy(restartPolicy, maximumRetryCount) {
|
|
|
|
maximumRetryCount = restartPolicy === 'on-failure' ? maximumRetryCount : undefined;
|
|
|
|
|
|
|
|
return ContainerService
|
|
|
|
.updateRestartPolicy($scope.container.Id, restartPolicy, maximumRetryCount)
|
|
|
|
.then(onUpdateSuccess)
|
|
|
|
.catch(notifyOnError);
|
|
|
|
|
|
|
|
function onUpdateSuccess() {
|
|
|
|
$scope.container.HostConfig.RestartPolicy = {
|
|
|
|
Name: restartPolicy,
|
|
|
|
MaximumRetryCount: maximumRetryCount
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function notifyOnError(err) {
|
|
|
|
Notifications.error('Failure', err, 'Unable to update restart policy');
|
|
|
|
return $q.reject(err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-11 07:46:55 +00:00
|
|
|
var provider = $scope.applicationState.endpoint.mode.provider;
|
|
|
|
var apiVersion = $scope.applicationState.endpoint.apiVersion;
|
|
|
|
NetworkService.networks(
|
|
|
|
provider === 'DOCKER_STANDALONE' || provider === 'DOCKER_SWARM_MODE',
|
|
|
|
false,
|
2018-04-04 00:31:04 +00:00
|
|
|
provider === 'DOCKER_SWARM_MODE' && apiVersion >= 1.25
|
2017-08-11 07:46:55 +00:00
|
|
|
)
|
|
|
|
.then(function success(data) {
|
|
|
|
var networks = data;
|
|
|
|
$scope.availableNetworks = networks;
|
|
|
|
})
|
|
|
|
.catch(function error(err) {
|
|
|
|
Notifications.error('Failure', err, 'Unable to retrieve networks');
|
|
|
|
});
|
2017-06-29 13:49:35 +00:00
|
|
|
|
2016-06-02 05:34:03 +00:00
|
|
|
update();
|
|
|
|
}]);
|