brief-rags-bench/docker-compose.yml

21 lines
343 B
YAML
Raw Normal View History

2025-12-17 15:37:32 +01:00
version: '3.8'
services:
fastapi:
build: .
container_name: brief-bench-fastapi
ports:
2025-12-18 09:36:24 +01:00
- "8092:8092"
2025-12-17 15:37:32 +01:00
env_file:
- .env
volumes:
2025-12-18 09:36:24 +01:00
- ./certs:/app/certs:ro
- ./static:/app/static
2025-12-17 15:37:32 +01:00
restart: unless-stopped
networks:
- brief-bench-network
networks:
brief-bench-network:
driver: bridge