Skip to content

Commit e438407

Browse files
authored
Merge pull request #3341 from dpulpeiro/fix/stack-registry-auth
fix: pass registry auth to stack deploy
2 parents e77f276 + f39aa23 commit e438407

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/server/src/utils/builders/compose.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export const createCommand = (compose: ComposeNested) => {
9090
if (composeType === "docker-compose") {
9191
command = `compose -p ${appName} -f ${path} up -d --build --remove-orphans`;
9292
} else if (composeType === "stack") {
93-
command = `stack deploy -c ${path} ${appName} --prune`;
93+
command = `stack deploy -c ${path} ${appName} --prune --with-registry-auth`;
9494
}
9595

9696
return command;

0 commit comments

Comments
 (0)