only run network removal on stop service if it is not a deletion operation

This commit is contained in:
ayntk-ai
2024-08-09 02:59:41 +02:00
parent 53dff4ca4f
commit d980c7a425

View File

@@ -9,7 +9,7 @@ class StopService
{ {
use AsAction; use AsAction;
public function handle(Service $service) public function handle(Service $service, bool $isDeleteOperation = false)
{ {
try { try {
$server = $service->destination->server; $server = $service->destination->server;
@@ -31,13 +31,15 @@ class StopService
instant_remote_process(command: ["docker rm -f {$db->name}-{$service->uuid}"], server: $server, throwError: false); instant_remote_process(command: ["docker rm -f {$db->name}-{$service->uuid}"], server: $server, throwError: false);
$db->update(['status' => 'exited']); $db->update(['status' => 'exited']);
} }
instant_remote_process(["docker network disconnect {$service->uuid} coolify-proxy"], $service->server);
instant_remote_process(["docker network rm {$service->uuid}"], $service->server); if (!$isDeleteOperation) {
// Only run this if not a delete operation
$service->delete_connected_networks($service->uuid);
}
} catch (\Exception $e) { } catch (\Exception $e) {
ray($e->getMessage()); ray($e->getMessage());
return $e->getMessage(); return $e->getMessage();
} }
} }
} }