fix: pass registry auth to stack deploy

This commit is contained in:
Daniel García Pulpeiro
2025-12-23 22:37:00 +01:00
parent e77f276785
commit f39aa23803

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;