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 120f045a55
commit 000d2d171e

View File

@@ -2110,7 +2110,7 @@ async function toolAppsCreate(
created = await createPrivateDeployKeyApp({ created = await createPrivateDeployKeyApp({
...commonOpts, ...commonOpts,
privateKeyUuid, 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"), gitBranch: String(params.branch ?? repo.default_branch ?? "main"),
portsExposes: String(params.ports ?? "3000"), portsExposes: String(params.ports ?? "3000"),
buildPack: (params.buildPack as any) ?? "nixpacks", buildPack: (params.buildPack as any) ?? "nixpacks",