remove debug

This commit is contained in:
Christopher 2020-10-23 21:08:06 +02:00
parent f8e3575b43
commit 4b96e1aa5a
1 changed files with 0 additions and 6 deletions

View File

@ -1,6 +1,4 @@
<?php
print_r($_SESSION);
if(isset($_SESSION['LOGIN']))
{
if($_SESSION['LOGIN'] == 'true')
@ -9,12 +7,8 @@ if(isset($_SESSION['LOGIN']))
$allContainers = $dockerClient->getAllContainers();
$container = NULL;
echo ("/".$_SESSION['CONATINER']);
foreach($allContainers as $thisContainer)
{
echo $thisContainer['Id']." == ".$thisContainer['Names'][0]."\n";
if($thisContainer['Id'] == $_SESSION['CONATINER'] || $thisContainer['Names'][0] == ("/".$_SESSION['CONATINER']))
$container = $thisContainer;
}