docker/pixelfed/pixelfed-startup
2020-01-17 00:10:48 -06:00

18 lines
439 B
Bash
Executable file

#!/usr/bin/env bash
set -xe
echo "ServerName ${APP_DOMAIN}" > /etc/apache2/conf-available/servername.conf
a2enconf servername
pixelfed 'rsync -rog storage-default/* storage/'
pixelfed 'php artisan config:cache'
pixelfed 'php artisan storage:link'
pixelfed 'php artisan horizon:install'
pixelfed 'php artisan horizon:assets'
pixelfed 'php artisan route:cache'
pixelfed 'php artisan view:cache'
pixelfed 'php artisan optimize'
exec "$@"