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

Ports list now using HostConfig.PortBindings

This commit is contained in:
Roman Usachev 2016-02-24 01:34:20 +03:00
parent 35dbacdfff
commit fc0dedfda7
2 changed files with 6 additions and 6 deletions

View file

@ -5,7 +5,7 @@ angular.module('container', [])
$scope.edit = false;
$scope.newCfg = {
Env: [],
NetworkSettings: {}
Ports: {}
};
var update = function () {
@ -17,8 +17,8 @@ angular.module('container', [])
$scope.newCfg.Env = d.Config.Env.map(function(entry) {
return {name: entry.split('=')[0], value: entry.split('=')[1]};
});
$scope.newCfg.NetworkSettings.Ports = angular.copy(d.NetworkSettings.Ports) || [];
angular.forEach($scope.newCfg.NetworkSettings.Ports, function(conf, port, arr) { arr[port] = conf || []; });
$scope.newCfg.Ports = angular.copy(d.HostConfig.PortBindings) || [];
angular.forEach($scope.newCfg.Ports, function(conf, port, arr) { arr[port] = conf || []; });
ViewSpinner.stop();
}, function (e) {
@ -76,7 +76,7 @@ angular.module('container', [])
return entry.name+"="+entry.value;
});
var portBindings = angular.copy($scope.newCfg.NetworkSettings.Ports);
var portBindings = angular.copy($scope.newCfg.Ports);
ViewSpinner.spin();