From 29c62cb38fa16a8c0b00fa2c77460db8e3ac322f Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Fri, 2 Jan 2026 16:44:36 +0100 Subject: [PATCH] fix(service): use database UUID for ServiceDatabase proxy container name The proxy container was incorrectly named using the service UUID instead of the database UUID, causing proxy logs to query the wrong container. Each ServiceDatabase should have its own uniquely named proxy container. --- app/Actions/Database/StartDatabaseProxy.php | 1 - 1 file changed, 1 deletion(-) diff --git a/app/Actions/Database/StartDatabaseProxy.php b/app/Actions/Database/StartDatabaseProxy.php index 12fd92792..c634f14ba 100644 --- a/app/Actions/Database/StartDatabaseProxy.php +++ b/app/Actions/Database/StartDatabaseProxy.php @@ -33,7 +33,6 @@ public function handle(StandaloneRedis|StandalonePostgresql|StandaloneMongodb|St $databaseType = $database->databaseType(); $network = $database->service->uuid; $server = data_get($database, 'service.destination.server'); - $proxyContainerName = "{$database->service->uuid}-proxy"; $containerName = "{$database->name}-{$database->service->uuid}"; } $internalPort = match ($databaseType) {