docker-bookstack/docker-entrypoint.sh
2022-08-14 21:57:18 +01:00

12 lines
247 B
Bash
Executable file

#!/bin/bash
set -e
echo "Starting Migration..."
php artisan migrate --force
echo "Clearing caches..."
php artisan cache:clear
php artisan view:clear
trap "echo Catching SIGWINCH apache error and perventing it." SIGWINCH
exec apache2-foreground