Files
firefly-iii/docker/entrypoint.sh

10 lines
198 B
Bash
Raw Normal View History

#!/bin/bash
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