Get the size of the image (more or less) for each running container.  Useful to see if a massively misconfigured container is ballooning your docker.img.  Does not however consider the log sizes   #!/usr/bin/php <?PHP require_once("/usr/local/emhttp/plugins/dynamix.docker.manager/include/DockerClient.php"); $DockerTemplates = new DockerTemplates(); $info = $DockerTemplates->getAllInfo(); foreach ($info as $contName=>$cont) { if ( $cont['running'] ) { echo "$contName Si
    • Like
    2