From 91660a24771b2d3cbc145b3df25f3e95ac2d2648 Mon Sep 17 00:00:00 2001 From: Anil Kulkarni Date: Mon, 27 Mar 2023 02:46:50 -0700 Subject: [PATCH] Run config:cache first When updating config variables, such as the APP_URL, the values need to be propagated before calling e.g. route:cache/view:cache Otherwise those commands will first run with the old config cache --- contrib/docker/start.apache.sh | 2 +- contrib/docker/start.fpm.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/docker/start.apache.sh b/contrib/docker/start.apache.sh index a16808733..4fb19e476 100755 --- a/contrib/docker/start.apache.sh +++ b/contrib/docker/start.apache.sh @@ -5,11 +5,11 @@ cp -r storage.skel/* storage/ chown -R www-data:www-data storage/ bootstrap/ # Refresh the environment +php artisan config:cache php artisan storage:link php artisan horizon:publish php artisan route:cache php artisan view:cache -php artisan config:cache # Finally run Apache apache2-foreground diff --git a/contrib/docker/start.fpm.sh b/contrib/docker/start.fpm.sh index c6fe63d6a..199489fc6 100755 --- a/contrib/docker/start.fpm.sh +++ b/contrib/docker/start.fpm.sh @@ -5,11 +5,11 @@ cp -r storage.skel/* storage/ chown -R www-data:www-data storage/ bootstrap/ # Refresh the environment +php artisan config:cache php artisan storage:link php artisan horizon:publish php artisan route:cache php artisan view:cache -php artisan config:cache # Finally run FPM php-fpm