Update start.sh

pull/1145/head
Shleeble 2019-04-19 01:32:36 +08:00 zatwierdzone przez GitHub
rodzic 15c3bed16c
commit 24358c1acb
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 4 dodań i 9 usunięć

Wyświetl plik

@ -1,20 +1,15 @@
#!/bin/bash
# Create the storage tree if needed and fix permissions
cp -r storage.skel/* storage/
chown -R www-data:www-data storage/ bootstrap/cache/
#cp -r storage.skel/* storage/
chown -R www-data:www-data storage/ bootstrap/
php artisan storage:link
# 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
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
# gosu www-data:www-data php artisan update
# Finally run Apache
exec apache2-foreground