-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
37 lines (34 loc) · 859 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
37 lines (34 loc) · 859 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# docker-compose.yml — One-click Curia setup
# Run: docker-compose up --build
version: "3.9"
services:
# FastAPI backend + All 5 agents (simulation mode)
api-server:
build:
context: .
dockerfile: Dockerfile
ports:
- "8000:8000"
environment:
- SIMULATION_MODE=true
- LLM_PROVIDER=openai
- OPENAI_API_KEY=${OPENAI_API_KEY}
- LLM_MODEL=gpt-4o-mini
- API_HOST=0.0.0.0
- API_PORT=8000
volumes:
- ./sample_cases:/app/sample_cases
restart: unless-stopped
# Next.js frontend
frontend:
build:
context: ./frontend
dockerfile: ../Dockerfile.frontend
ports:
- "3000:3000"
environment:
- NEXT_PUBLIC_API_URL=http://localhost:8000
- NEXT_PUBLIC_WS_URL=ws://localhost:8000/ws
depends_on:
- api-server
restart: unless-stopped