feat(compose): update docker-compose command to always pull images

This commit is contained in:
Vyacheslav Scherbinin
2026-01-28 13:35:29 +07:00
parent c579dbeb1c
commit 6c90075a64

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`;
}