-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
45 lines (39 loc) · 1.11 KB
/
docker-compose.yml
File metadata and controls
45 lines (39 loc) · 1.11 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
38
39
40
41
42
43
44
45
services:
ci-copilot:
image: talkopsai/ci-copilot:latest
container_name: ci-copilot
ports:
- "10102:10102"
environment:
# Required: OpenAI API Key (loaded from .env file in the same directory)
- OPENAI_API_KEY=${OPENAI_API_KEY}
# GitHub MCP Server Configuration(loaded from .env file in the same directory)
- GITHUB_PERSONAL_ACCESS_TOKEN=${GITHUB_PERSONAL_ACCESS_TOKEN}
# LLM Configuration
- LLM_PROVIDER=openai
- LLM_MODEL=gpt-4o-mini
- LLM_HIGHER_PROVIDER=openai
- LLM_HIGHER_MODEL=gpt-5-mini
- LLM_DEEPAGENT_PROVIDER=openai
- LLM_DEEPAGENT_MODEL=o4-mini
# Optional: Logging level
- LOG_LEVEL=INFO
restart: unless-stopped
networks:
- ci-copilot-net
talkops-ui:
image: talkopsai/talkops:latest
container_name: talkops-ui
environment:
- TALKOPS_CI_COPILOT_URL=http://localhost:10102
- TALKOPS_ENABLE_LOGGING=false
ports:
- "8080:80"
depends_on:
- ci-copilot
restart: unless-stopped
networks:
- ci-copilot-net
networks:
ci-copilot-net:
driver: bridge