show all containers

This commit is contained in:
Christopher 2020-10-23 22:56:45 +02:00
parent 3fc16fbf6d
commit bd78992ded
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@
public function getAllContainers(){
curl_setopt($this->CurlClient, CURLOPT_POST, FALSE);
curl_setopt($this->CurlClient, CURLOPT_URL, "http:/v1.24/containers/json");
curl_setopt($this->CurlClient, CURLOPT_URL, "http:/v1.24/containers/json?all=1");
$jsonRAWData = curl_exec($this->CurlClient);
return json_decode($jsonRAWData, TRUE);