a forntend with nginx
4.1K
Unified reverse-proxy and static-file server for SpiceSibyl — an OpenAI-compatible multi-provider AI gateway.
A single container that:
//api/* requests to the SpiceSibyl backend (FastAPI)# docker-compose.prod.yml
services:
backend:
image: lordraw/spice-sibyl-backend:latest
env_file: ./backend/.env
expose:
- "8000"
nginx:
image: lordraw/spice-sibyl-nginx:latest
ports:
- "80:80"
- "443:443"
volumes:
- ./nginx/ssl:/etc/nginx/ssl:ro
depends_on:
- backend
Content type
Image
Digest
sha256:ab1f91728…
Size
31.3 MB
Last updated
24 days ago
docker pull lordraw/spice-sibyl-nginx