mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-05-07 20:32:26 +00:00
56 lines
1.8 KiB
Bash
56 lines
1.8 KiB
Bash
#!/usr/bin/env sh
|
|
set -e
|
|
|
|
container_mode=${CONTAINER_MODE:-"http"}
|
|
octane_server=${OCTANE_SERVER}
|
|
auto_db_migrate=${AUTO_DB_MIGRATE:-false}
|
|
|
|
initialStuff() {
|
|
echo "Container mode: $container_mode"
|
|
|
|
if [ ${auto_db_migrate} = "true" ]; then
|
|
echo "Auto database migration enabled."
|
|
php artisan migrate --isolated --force
|
|
fi
|
|
|
|
php artisan storage:link; \
|
|
php artisan optimize:clear; \
|
|
php artisan optimize;
|
|
}
|
|
|
|
if [ "$1" != "" ]; then
|
|
exec "$@"
|
|
elif [ "${container_mode}" = "http" ]; then
|
|
initialStuff
|
|
echo "Octane Server: $octane_server"
|
|
if [ "${octane_server}" = "frankenphp" ]; then
|
|
exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.frankenphp.conf
|
|
elif [ "${octane_server}" = "swoole" ]; then
|
|
exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.swoole.conf
|
|
elif [ "${octane_server}" = "roadrunner" ]; then
|
|
exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.roadrunner.conf
|
|
else
|
|
echo "Invalid Octane server supplied."
|
|
exit 1
|
|
fi
|
|
elif [ "${container_mode}" = "horizon" ]; then
|
|
initialStuff
|
|
exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.horizon.conf
|
|
elif [ "${container_mode}" = "reverb" ]; then
|
|
initialStuff
|
|
exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.reverb.conf
|
|
elif [ "${container_mode}" = "scheduler" ]; then
|
|
initialStuff
|
|
exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.scheduler.conf
|
|
elif [ "${container_mode}" = "worker" ]; then
|
|
if [ -z "${WORKER_COMMAND}" ]; then
|
|
echo "WORKER_COMMAND is undefined."
|
|
exit 1
|
|
fi
|
|
initialStuff
|
|
exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.worker.conf
|
|
else
|
|
echo "Container mode mismatched."
|
|
exit 1
|
|
fi
|