fix(deploy): use explicit ssh:// scheme and port 222 for gitea clone urls in coolify

This commit is contained in:
2026-05-16 13:54:17 -07:00
parent 67855b94c2
commit cd062bd30d

View File

@@ -2110,7 +2110,7 @@ async function toolAppsCreate(
created = await createPrivateDeployKeyApp({
...commonOpts,
privateKeyUuid,
gitRepository: `git@git.vibnai.com:${repoOrg}/${repoName}.git`,
gitRepository: `ssh://git@git.vibnai.com:222/${repoOrg}/${repoName}.git`,
gitBranch: String(params.branch ?? repo.default_branch ?? "main"),
portsExposes: String(params.ports ?? "3000"),
buildPack: (params.buildPack as any) ?? "nixpacks",