feat: add custom container name prefix option

This commit is contained in:
TheGenio 2026-02-02 01:02:59 +03:00
parent 596f8bcf97
commit a5599da836

View file

@ -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;