Files
vkv/docker/app/entrypoint.sh
Zdeněk Burda 41e3ce6f25 Initial commit
2026-01-09 21:26:40 +01:00

22 lines
627 B
Bash

#!/usr/bin/env bash
# docker/app/entrypoint.sh
set -euo pipefail
# Pokud nechceš migrovat/cachovat při startu, tyto bloky odstraň.
# V produkci často dává smysl mít to řízené deploy procesem.
php artisan config:clear >/dev/null 2>&1 || true
php artisan route:clear >/dev/null 2>&1 || true
php artisan view:clear >/dev/null 2>&1 || true
# Cache pro production (vyžaduje korektní .env)
php artisan config:cache || true
php artisan route:cache || true
php artisan view:cache || true
php artisan event:cache || true
# Migrace (pokud chceš automaticky; jinak vypnout)
php artisan migrate --force || true
exec "$@"