2023-09-21 15:48:31 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Actions\Service;
|
|
|
|
|
|
|
|
use App\Models\Service;
|
2024-06-10 20:43:34 +00:00
|
|
|
use Lorisleiva\Actions\Concerns\AsAction;
|
2023-10-02 14:57:55 +00:00
|
|
|
use Symfony\Component\Yaml\Yaml;
|
2023-09-21 15:48:31 +00:00
|
|
|
|
|
|
|
class StartService
|
|
|
|
{
|
|
|
|
use AsAction;
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2023-09-21 15:48:31 +00:00
|
|
|
public function handle(Service $service)
|
|
|
|
{
|
2024-06-10 20:43:34 +00:00
|
|
|
ray('Starting service: '.$service->name);
|
2023-09-25 10:49:55 +00:00
|
|
|
$service->saveComposeConfigs();
|
2024-06-10 20:43:34 +00:00
|
|
|
$commands[] = 'cd '.$service->workdir();
|
2023-11-21 11:07:06 +00:00
|
|
|
$commands[] = "echo 'Saved configuration files to {$service->workdir()}.'";
|
|
|
|
$commands[] = "echo 'Creating Docker network.'";
|
2024-02-28 12:48:39 +00:00
|
|
|
$commands[] = "docker network inspect $service->uuid >/dev/null 2>&1 || docker network create --attachable $service->uuid";
|
2024-06-10 20:43:34 +00:00
|
|
|
$commands[] = 'echo Starting service.';
|
2023-11-21 11:07:06 +00:00
|
|
|
$commands[] = "echo 'Pulling images.'";
|
2024-06-10 20:43:34 +00:00
|
|
|
$commands[] = 'docker compose pull';
|
2023-11-21 11:07:06 +00:00
|
|
|
$commands[] = "echo 'Starting containers.'";
|
2024-06-10 20:43:34 +00:00
|
|
|
$commands[] = 'docker compose up -d --remove-orphans --force-recreate --build';
|
2023-11-28 11:05:04 +00:00
|
|
|
$commands[] = "docker network connect $service->uuid coolify-proxy >/dev/null 2>&1 || true";
|
2024-01-21 13:30:03 +00:00
|
|
|
if (data_get($service, 'connect_to_docker_network')) {
|
|
|
|
$compose = data_get($service, 'docker_compose', []);
|
|
|
|
$network = $service->destination->network;
|
|
|
|
$serviceNames = data_get(Yaml::parse($compose), 'services', []);
|
|
|
|
foreach ($serviceNames as $serviceName => $serviceConfig) {
|
|
|
|
$commands[] = "docker network connect --alias {$serviceName}-{$service->uuid} $network {$serviceName}-{$service->uuid} || true";
|
|
|
|
}
|
2023-10-02 14:57:55 +00:00
|
|
|
}
|
2023-12-08 11:12:44 +00:00
|
|
|
$activity = remote_process($commands, $service->server, type_uuid: $service->uuid, callEventOnFinish: 'ServiceStatusChanged');
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2023-09-21 15:48:31 +00:00
|
|
|
return $activity;
|
|
|
|
}
|
|
|
|
}
|