Files
firefly-iii/docker/entrypoint.sh

13 lines
386 B
Bash
Raw Normal View History

#!/bin/bash
2017-12-15 09:16:41 +01:00
# 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
2017-10-11 10:07:09 +02:00
cat .env.docker | envsubst > .env && cat .env
composer dump-autoload
php artisan optimize
php artisan package:discover
php artisan firefly:instructions install
2017-02-11 10:12:11 +01:00
exec apache2-foreground