mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-23 01:16:46 -06:00
13 lines
386 B
Bash
Executable File
13 lines
386 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# make sure we own the volumes:
|
|
chown -R www-data:www-data $FIREFLY_PATH/storage/export $FIREFLY_PATH/storage/upload
|
|
chmod -R 775 $FIREFLY_PATH/storage/export $FIREFLY_PATH/storage/upload
|
|
|
|
cat .env.docker | envsubst > .env && cat .env
|
|
composer dump-autoload
|
|
php artisan optimize
|
|
php artisan package:discover
|
|
php artisan firefly:instructions install
|
|
exec apache2-foreground
|