diff --git a/app/components/container/containerController.js b/app/components/container/containerController.js index 7ef89ab9c..ebac2b36b 100644 --- a/app/components/container/containerController.js +++ b/app/components/container/containerController.js @@ -59,8 +59,6 @@ $scope.newCfg.Binds.push(bind); }); - console.log($scope.newCfg); - ViewSpinner.stop(); }, function (e) { if (e.status === 404) { @@ -130,7 +128,9 @@ if (b.ReadOnly) { bindLine += ':ro'; } - binds.push(bindLine); + if (b.HostPath != '' || !b.DefaultBind) { + binds.push(bindLine); + } } });