docker/pixelfed/pixelfed-startup

14 lines
293 B
Plaintext
Raw Normal View History

2020-01-15 06:15:43 +00:00
#!/usr/bin/env bash
set -xe
2020-01-15 20:07:47 +00:00
pixelfed 'php artisan horizon:install'
pixelfed 'php artisan horizon:assets'
pixelfed 'php artisan route:cache'
pixelfed 'php artisan view:cache'
2020-01-15 15:34:11 +00:00
pixelfed 'php artisan media:optimize'
pixelfed 'php artisan config:cache'
pixelfed 'php artisan optimize'
2020-01-15 06:15:43 +00:00
exec "$@"