瀏覽代碼

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

Anil Kulkarni 2 年之前
父節點
當前提交
91660a2477
共有 2 個文件被更改,包括 2 次插入2 次删除
  1. 1 1
      contrib/docker/start.apache.sh
  2. 1 1
      contrib/docker/start.fpm.sh

+ 1 - 1
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

+ 1 - 1
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