Regression: fix network mode in container list

This commit is contained in:
bergware
2018-03-17 00:54:13 +01:00
parent d9a33e92a4
commit bc98284f07

View File

@@ -37,6 +37,7 @@ $docker = ['var docker=[];'];
foreach ($all_containers as $ct) {
$name = $ct['Name'];
$info = &$all[$name];
$mode = $ct['NetworkMode'];
$id = $ct['Id'];
$imageID = $ct['ImageId'];
$is_autostart = $info['autostart'] ? 'true':'false';