From a5599da8366a553812e3fe57322ea84608285b1a Mon Sep 17 00:00:00 2001 From: TheGenio Date: Mon, 2 Feb 2026 01:02:59 +0300 Subject: [PATCH] feat: add custom container name prefix option --- bootstrap/helpers/docker.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap/helpers/docker.php b/bootstrap/helpers/docker.php index af7166e08..96c64dd6e 100644 --- a/bootstrap/helpers/docker.php +++ b/bootstrap/helpers/docker.php @@ -189,7 +189,7 @@ function generateApplicationContainerName(Application $application, $pull_reques return $application->uuid; } - // Use custom prefix if set, otherwise use uuid + $prefix = $custom_container_name_prefix ?? $application->uuid; return $prefix.'-'.$now;