1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-28 09:49:40 +02:00

Added possibility to specify name at container creation

This commit is contained in:
Nazar Mokrynskyi 2014-07-28 18:09:05 +02:00
parent 5075995129
commit 29df9cf226
3 changed files with 12 additions and 4 deletions

View file

@ -214,13 +214,13 @@ function ContainerController($scope, $routeParams, $location, Container, Message
// Controller for the list of containers
function ContainersController($scope, Container, Settings, Messages, ViewSpinner) {
$scope.predicate = '-Created';
$scope.toggle = false;
$scope.toggle = false;
$scope.displayAll = Settings.displayAll;
var update = function(data) {
ViewSpinner.spin();
Container.query(data, function(d) {
$scope.containers = d.map(function(item) {
$scope.containers = d.map(function(item) {
return new ContainerViewModel(item); });
ViewSpinner.stop();
});
@ -258,7 +258,7 @@ function ContainersController($scope, Container, Settings, Messages, ViewSpinner
};
$scope.toggleGetAll = function() {
Settings.displayAll = $scope.displayAll;
Settings.displayAll = $scope.displayAll;
update({all: Settings.displayAll ? 1 : 0});
};
@ -395,6 +395,7 @@ function ImageController($scope, $q, $routeParams, $location, Image, Container,
function StartContainerController($scope, $routeParams, $location, Container, Messages) {
$scope.template = 'partials/startcontainer.html';
$scope.config = {
name: '',
memory: 0,
memorySwap: 0,
env: '',
@ -415,6 +416,7 @@ function StartContainerController($scope, $routeParams, $location, Container, Me
Container.create({
Image: id,
name: $scope.config.name,
Memory: $scope.config.memory,
MemorySwap: $scope.config.memorySwap,
Cmd: cmds,