Files
Xboard/.docker/entrypoint.sh
T
2026-04-18 23:31:59 +08:00

12 lines
316 B
Bash

#!/bin/sh
set -e
echo "[entrypoint] Running database migrations..."
php /www/artisan migrate --force
echo "[entrypoint] Checking core plugins..."
php /www/artisan tinker --execute="App\Services\Plugin\PluginManager::installDefaultPlugins();" 2>/dev/null || true
echo "[entrypoint] Starting services..."
exec "$@"