Refactor GetContainersStatus.php for improved readability and maintainability

This commit is contained in:
Andras Bacsai
2024-05-09 12:10:06 +02:00
parent ba40f93386
commit e91a64b1cc
3 changed files with 7 additions and 4 deletions

View File

@@ -13,6 +13,6 @@ class StartSentinel
if ($restart) {
instant_remote_process(['docker rm -f coolify-sentinel'], $server, false);
}
return instant_remote_process(["docker run --rm --pull always -d --name coolify-sentinel -v /var/run/docker.sock:/var/run/docker.sock -v /data/coolify/metrics:/var/www/html/storage/app/metrics --pid host --health-cmd \"curl --fail http://127.0.0.1:8888/api/health || exit 1\" --health-interval 10s --health-retries 3 ghcr.io/coollabsio/sentinel:$version"], $server, false);
return instant_remote_process(["docker run --rm --pull always -d --name coolify-sentinel -v /var/run/docker.sock:/var/run/docker.sock -v /data/coolify/metrics:/app/metrics -v /data/coolify/logs:/app/logs --pid host --health-cmd \"curl --fail http://127.0.0.1:8888/api/health || exit 1\" --health-interval 10s --health-retries 3 ghcr.io/coollabsio/sentinel:$version"], $server, false);
}
}