mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 14:31:26 +00:00
Update start.sh
This commit is contained in:
parent
15c3bed16c
commit
24358c1acb
1 changed files with 4 additions and 9 deletions
|
@ -1,20 +1,15 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# Create the storage tree if needed and fix permissions
|
# Create the storage tree if needed and fix permissions
|
||||||
cp -r storage.skel/* storage/
|
#cp -r storage.skel/* storage/
|
||||||
chown -R www-data:www-data storage/ bootstrap/cache/
|
chown -R www-data:www-data storage/ bootstrap/
|
||||||
php artisan storage:link
|
php artisan storage:link
|
||||||
|
|
||||||
# Migrate database if the app was upgraded
|
# Migrate database if the app was upgraded
|
||||||
gosu www-data:www-data php artisan migrate --force
|
# gosu www-data:www-data php artisan migrate --force
|
||||||
|
|
||||||
# Run other specific migratins if required
|
# Run other specific migratins if required
|
||||||
gosu www-data:www-data php artisan update
|
# gosu www-data:www-data php artisan update
|
||||||
|
|
||||||
# Run a worker if it is set as embedded
|
|
||||||
if [ "$HORIZON_EMBED" = "true" ]; then
|
|
||||||
gosu www-data:www-data php artisan horizon &
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Finally run Apache
|
# Finally run Apache
|
||||||
exec apache2-foreground
|
exec apache2-foreground
|
||||||
|
|
Loading…
Reference in a new issue