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;