From 0223bf0659f141d161bb5c134d1ae0d5327385e6 Mon Sep 17 00:00:00 2001 From: Christopher Date: Fri, 23 Oct 2020 23:58:08 +0200 Subject: [PATCH] change logoutput to 350 lines --- classen/docker.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classen/docker.php b/classen/docker.php index 74240d4..edb65ce 100644 --- a/classen/docker.php +++ b/classen/docker.php @@ -20,7 +20,7 @@ public function getContainerLogs($container){ curl_setopt($this->CurlClient, CURLOPT_POST, FALSE); - curl_setopt($this->CurlClient, CURLOPT_URL, "http:/v1.24/containers/".$container."/logs?stdout=1&tail=150"); + curl_setopt($this->CurlClient, CURLOPT_URL, "http:/v1.24/containers/".$container."/logs?stdout=1&tail=350"); $rawOutput = curl_exec($this->CurlClient); return $rawOutput;