-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
32 lines (30 loc) · 839 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
32 lines (30 loc) · 839 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
version: '3.8'
services:
cognitive-framework:
build: .
container_name: llm-cognitive-framework
env_file:
- .env
environment:
- GROQ_API_KEY=${GROQ_API_KEY}
- GOOGLE_API_KEY=${GOOGLE_API_KEY}
- OPENAI_API_KEY=${OPENAI_API_KEY:-}
- ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY:-}
- DEEPSEEK_API_KEY=${DEEPSEEK_API_KEY:-}
volumes:
- ./results:/app/results
- ./visualizations:/app/visualizations
- ./logs:/app/logs
- ./config:/app/config
command: python main.py --compare --output results
restart: unless-stopped
web-dashboard:
image: nginx:alpine
container_name: cognitive-dashboard
ports:
- "8080:80"
volumes:
- ./visualizations:/usr/share/nginx/html:ro
depends_on:
- cognitive-framework
restart: unless-stopped