-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
31 lines (29 loc) · 805 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
31 lines (29 loc) · 805 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
services:
backend:
build: ./backend
container_name: sentinelai-backend
ports:
- "8000:8000"
environment:
SENTINEL_VIDEO: /app/sample_video.mp4
volumes:
- ./backend/sample_video.mp4:/app/sample_video.mp4:ro
- sentinelai-db:/app/data
restart: unless-stopped
frontend:
build: ./frontend
container_name: sentinelai-frontend
ports:
- "3000:3000"
environment:
SENTINEL_API_URL: http://backend:8000
NEXT_PUBLIC_API_URL: http://localhost:8000
NEXT_PUBLIC_WS_URL: ws://localhost:8000
GROQ_API_KEY: ${GROQ_API_KEY}
LLM_BASE_URL: ${LLM_BASE_URL:-https://api.groq.com/openai/v1}
LLM_MODEL: ${LLM_MODEL:-qwen/qwen3-32b}
depends_on:
- backend
restart: unless-stopped
volumes:
sentinelai-db: