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