From f39aa2380312d3527188f638d61d87b6e7d44d87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Garc=C3=ADa=20Pulpeiro?= Date: Tue, 23 Dec 2025 22:37:00 +0100 Subject: [PATCH] fix: pass registry auth to stack deploy --- packages/server/src/utils/builders/compose.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/server/src/utils/builders/compose.ts b/packages/server/src/utils/builders/compose.ts index fe5417ea5..5a0184a3d 100644 --- a/packages/server/src/utils/builders/compose.ts +++ b/packages/server/src/utils/builders/compose.ts @@ -90,7 +90,7 @@ export const createCommand = (compose: ComposeNested) => { if (composeType === "docker-compose") { command = `compose -p ${appName} -f ${path} up -d --build --remove-orphans`; } else if (composeType === "stack") { - command = `stack deploy -c ${path} ${appName} --prune`; + command = `stack deploy -c ${path} ${appName} --prune --with-registry-auth`; } return command;