My-Server-XYZ / entrypoint.sh
naimulislam's picture
Update entrypoint.sh
8792b2d verified
raw
history blame contribute delete
275 Bytes
#!/bin/bash
# 1. Start Ollama
ollama serve &
# 2. Start Streamlit on internal port
streamlit run /app.py --server.port 8501 --server.address 0.0.0.0 --server.headless true &
# 3. Start Nginx (This stays in the foreground to keep the container alive)
nginx -g "daemon off;"