2023-09-21 15:48:31 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Actions\Service;
|
|
|
|
|
|
|
|
use Lorisleiva\Actions\Concerns\AsAction;
|
|
|
|
use App\Models\Service;
|
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;
|
|
|
|
public function handle(Service $service)
|
|
|
|
{
|
2023-10-02 13:51:06 +00:00
|
|
|
$network = $service->destination->network;
|
2023-09-25 10:49:55 +00:00
|
|
|
$service->saveComposeConfigs();
|
|
|
|
$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.'";
|
2023-11-28 11:05:04 +00:00
|
|
|
$commands[] = "docker network create --attachable '{$service->uuid}' >/dev/null 2>&1 || true";
|
2023-11-21 11:07:06 +00:00
|
|
|
$commands[] = "echo 'Starting service {$service->name} on {$service->server->name}.'";
|
|
|
|
$commands[] = "echo 'Pulling images.'";
|
2023-09-25 13:48:43 +00:00
|
|
|
$commands[] = "docker compose pull";
|
2023-11-21 11:07:06 +00:00
|
|
|
$commands[] = "echo 'Starting containers.'";
|
2023-12-01 21:16:27 +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";
|
2023-10-02 14:57:55 +00:00
|
|
|
$compose = data_get($service,'docker_compose',[]);
|
|
|
|
$serviceNames = data_get(Yaml::parse($compose),'services',[]);
|
|
|
|
foreach($serviceNames as $serviceName => $serviceConfig){
|
2023-11-07 12:28:48 +00:00
|
|
|
$commands[] = "docker network connect --alias {$serviceName}-{$service->uuid} $network {$serviceName}-{$service->uuid} || true";
|
2023-10-02 14:57:55 +00:00
|
|
|
}
|
2023-09-21 15:48:31 +00:00
|
|
|
$activity = remote_process($commands, $service->server);
|
|
|
|
return $activity;
|
|
|
|
}
|
|
|
|
}
|