|
|
@ -388,12 +388,12 @@ function ($q, $scope, $state, $timeout, $transition$, $filter, Container, Contai
|
|
|
|
// Mac Address
|
|
|
|
// Mac Address
|
|
|
|
$scope.formValues.MacAddress = d.NetworkSettings.Networks[$scope.config.HostConfig.NetworkMode].MacAddress;
|
|
|
|
$scope.formValues.MacAddress = d.NetworkSettings.Networks[$scope.config.HostConfig.NetworkMode].MacAddress;
|
|
|
|
// ExtraHosts
|
|
|
|
// ExtraHosts
|
|
|
|
for (var h in $scope.config.HostConfig.ExtraHosts) {
|
|
|
|
var extraHosts = $scope.config.HostConfig.ExtraHosts;
|
|
|
|
if ({}.hasOwnProperty.call($scope.config.HostConfig.ExtraHosts, h)) {
|
|
|
|
for (var i = 0; i < extraHosts.length; i++) {
|
|
|
|
$scope.formValues.ExtraHosts.push({'value': $scope.config.HostConfig.ExtraHosts[h]});
|
|
|
|
var host = extraHosts[i];
|
|
|
|
$scope.config.HostConfig.ExtraHosts = [];
|
|
|
|
$scope.formValues.ExtraHosts.push({ 'value': host });
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$scope.config.HostConfig.ExtraHosts = [];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function loadFromContainerEnvironmentVariables(d) {
|
|
|
|
function loadFromContainerEnvironmentVariables(d) {
|
|
|
|