2024-05-08 12:22:35 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Actions\Server;
|
|
|
|
|
|
|
|
use Lorisleiva\Actions\Concerns\AsAction;
|
|
|
|
use App\Models\Server;
|
|
|
|
|
|
|
|
class StartSentinel
|
|
|
|
{
|
|
|
|
use AsAction;
|
2024-05-08 17:19:32 +00:00
|
|
|
public function handle(Server $server, $version = 'latest', bool $restart = false)
|
2024-05-08 12:22:35 +00:00
|
|
|
{
|
2024-05-08 17:19:32 +00:00
|
|
|
if ($restart) {
|
|
|
|
instant_remote_process(['docker rm -f coolify-sentinel'], $server, false);
|
|
|
|
}
|
2024-05-09 10:22:49 +00:00
|
|
|
instant_remote_process([
|
2024-05-09 10:30:51 +00:00
|
|
|
"docker run --rm --pull always -d -e \"SCHEDULER=true\" --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",
|
2024-05-09 10:22:49 +00:00
|
|
|
"chown -R 9999:root /data/coolify/metrics /data/coolify/logs",
|
2024-05-09 10:35:49 +00:00
|
|
|
"chmod -R 700 /data/coolify/metrics /data/coolify/logs"
|
2024-05-09 10:22:49 +00:00
|
|
|
], $server, false);
|
2024-05-08 12:22:35 +00:00
|
|
|
}
|
|
|
|
}
|