Merge pull request #3341 from dpulpeiro/fix/stack-registry-auth

fix: pass registry auth to stack deploy
This commit is contained in:
Mauricio Siu
2025-12-25 03:29:33 -06:00
committed by GitHub

View File

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