1
0
Эх сурвалжийг харах

Merge pull request #4255 from intentionally-left-nil/fix-reset-cache-ordering

Run config:cache first
daniel 2 жил өмнө
parent
commit
1b1378ac64

+ 1 - 1
contrib/docker/start.apache.sh

@@ -5,11 +5,11 @@ cp -r storage.skel/* storage/
 chown -R www-data:www-data storage/ bootstrap/
 chown -R www-data:www-data storage/ bootstrap/
 
 
 # Refresh the environment
 # Refresh the environment
+php artisan config:cache
 php artisan storage:link
 php artisan storage:link
 php artisan horizon:publish
 php artisan horizon:publish
 php artisan route:cache
 php artisan route:cache
 php artisan view:cache
 php artisan view:cache
-php artisan config:cache
 
 
 # Finally run Apache
 # Finally run Apache
 apache2-foreground
 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/
 chown -R www-data:www-data storage/ bootstrap/
 
 
 # Refresh the environment
 # Refresh the environment
+php artisan config:cache
 php artisan storage:link
 php artisan storage:link
 php artisan horizon:publish
 php artisan horizon:publish
 php artisan route:cache
 php artisan route:cache
 php artisan view:cache
 php artisan view:cache
-php artisan config:cache
 
 
 # Finally run FPM
 # Finally run FPM
 php-fpm
 php-fpm