Merge pull request #3541 from gentslava/feat/docker-compose-pull

Update docker-compose command to always pull images (reopened)
This commit is contained in:
Mauricio Siu
2026-02-09 00:18:14 -06:00
committed by GitHub

View File

@@ -88,7 +88,7 @@ export const createCommand = (compose: ComposeNested) => {
let command = "";
if (composeType === "docker-compose") {
command = `compose -p ${appName} -f ${path} up -d --build --remove-orphans`;
command = `compose -p ${appName} -f ${path} up -d --build --pull always --remove-orphans`;
} else if (composeType === "stack") {
command = `stack deploy -c ${path} ${appName} --prune --with-registry-auth`;
}