-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
37 lines (35 loc) · 1.19 KB
/
docker-compose.yml
File metadata and controls
37 lines (35 loc) · 1.19 KB
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
version: '3.8'
services:
vol3-triage:
image: therealpotus/vol3-triage:latest
container_name: vol3-triage
ports:
- "8000:8000"
volumes:
# Mount directory containing memory dump files (read-only)
- ./dumps:/dumps:ro
# Mount directory for analysis outputs (read-write)
- ./runs:/app/runs
environment:
# LLM Provider: 'google' (recommended) or 'anthropic'
- LLM_PROVIDER=${LLM_PROVIDER:-google}
# Google API Key (required if using Google Gemini)
- GOOGLE_API_KEY=${GOOGLE_API_KEY}
# Anthropic API Key (required if using Anthropic Claude)
- ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY}
# Optional: Override default model
- LLM_MODEL=${LLM_MODEL:-gemini-2.5-pro}
restart: unless-stopped
healthcheck:
test: ["CMD", "python", "-c", "import requests; requests.get('http://localhost:8000/')"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s
# Optional: For local development/building
# Uncomment to build from local Dockerfile instead of pulling from Docker Hub
# vol3-triage:
# build:
# context: .
# dockerfile: Dockerfile
# # ... rest of config same as above