Files
LiteOps/docker-entrypoint.sh
2025-06-12 16:48:37 +08:00

10 lines
193 B
Bash
Executable File

#!/bin/bash
echo "Starting nginx..."
service nginx start
echo "Starting backend service..."
python -m uvicorn backend.asgi:application \
--host 0.0.0.0 \
--port 8900 \
--workers 1