Always pull image on app start

This commit is contained in:
DireMunchkin 2023-09-30 18:27:36 +02:00 committed by Nicolas Meienberger
parent 42edd1c4a4
commit 5d2d8e7b9c

View file

@ -176,7 +176,7 @@ export class AppExecutors {
this.logger.info(`Regenerating app.env file for app ${appId}`);
await this.ensureAppDir(appId);
await generateEnvFile(appId, config);
await compose(appId, 'up --detach --force-recreate --remove-orphans');
await compose(appId, 'up --detach --force-recreate --remove-orphans --pull always');
this.logger.info(`App ${appId} started`);