pixelfed/contrib/docker/start.fpm.sh

16 wiersze
325 B
Bash
Czysty Zwykły widok Historia

2020-04-11 15:48:02 +00:00
#!/bin/bash
# Create the storage tree if needed and fix permissions
cp -r storage.skel/* storage/
chown -R www-data:www-data storage/ bootstrap/
# Refresh the environment
php artisan config:cache
2020-04-11 15:48:02 +00:00
php artisan storage:link
php artisan horizon:publish
2020-04-11 15:48:02 +00:00
php artisan route:cache
php artisan view:cache
# Finally run FPM
php-fpm