2023-09-21 15:48:31 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Actions\Service;
|
|
|
|
|
|
|
|
use Lorisleiva\Actions\Concerns\AsAction;
|
|
|
|
use App\Models\Service;
|
|
|
|
|
|
|
|
class StartService
|
|
|
|
{
|
|
|
|
use AsAction;
|
|
|
|
public function handle(Service $service)
|
|
|
|
{
|
2023-09-25 10:49:55 +00:00
|
|
|
$service->saveComposeConfigs();
|
|
|
|
$commands[] = "cd " . $service->workdir();
|
2023-09-22 12:47:25 +00:00
|
|
|
$commands[] = "echo '####### Starting service {$service->name} on {$service->server->name}.'";
|
2023-09-22 18:39:56 +00:00
|
|
|
$commands[] = "echo '####### Pulling images.'";
|
2023-09-22 12:47:25 +00:00
|
|
|
$commands[] = "docker compose pull --quiet";
|
|
|
|
$commands[] = "echo '####### Starting containers.'";
|
|
|
|
$commands[] = "docker compose up -d >/dev/null 2>&1";
|
2023-09-21 19:30:13 +00:00
|
|
|
$commands[] = "docker network connect $service->uuid coolify-proxy 2>/dev/null || true";
|
2023-09-21 15:48:31 +00:00
|
|
|
$activity = remote_process($commands, $service->server);
|
|
|
|
return $activity;
|
|
|
|
}
|
|
|
|
}
|