Преглед на файлове

Always pull image on app start

DireMunchkin преди 1 година
родител
ревизия
5d2d8e7b9c
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      packages/cli/src/executors/app/app.executors.ts

+ 1 - 1
packages/cli/src/executors/app/app.executors.ts

@@ -176,7 +176,7 @@ export class AppExecutors {
       this.logger.info(`Regenerating app.env file for app ${appId}`);
       this.logger.info(`Regenerating app.env file for app ${appId}`);
       await this.ensureAppDir(appId);
       await this.ensureAppDir(appId);
       await generateEnvFile(appId, config);
       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`);
       this.logger.info(`App ${appId} started`);