fix: remove quotes in COOLIFY_CONTAINER_NAME

This commit is contained in:
Khiet Tam Nguyen
2025-01-23 13:08:31 +11:00
parent bae8b9a938
commit c4bf91e5b4
2 changed files with 3 additions and 3 deletions

View File

@@ -3608,7 +3608,7 @@ function newParser(Application|Service $resource, int $pull_request_id = 0, ?int
// Add COOLIFY_CONTAINER_NAME to environment
if ($resource->environment_variables->where('key', 'COOLIFY_CONTAINER_NAME')->isEmpty()) {
$coolifyEnvironments->put('COOLIFY_CONTAINER_NAME', "\"{$containerName}\"");
$coolifyEnvironments->put('COOLIFY_CONTAINER_NAME', "{$containerName}");
}
if ($isApplication) {