-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
executable file
·50 lines (48 loc) · 1.58 KB
/
docker-compose.yml
File metadata and controls
executable file
·50 lines (48 loc) · 1.58 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
46
47
48
49
50
services:
coding-agent:
image: ${CODING_AGENT_IMAGE:-leesk212/coding-ai-agent-v5:latest}
build:
context: .
dockerfile: Dockerfile
container_name: dannys-coding-ai-agent
ports:
- "${CODING_AGENT_PORT:-8501}:8501"
environment:
OPENROUTER_API_KEY: ${OPENROUTER_API_KEY:-}
OLLAMA_BASE_URL: ${OLLAMA_BASE_URL:-http://ollama:11434}
LOCAL_FALLBACK_MODEL: ${LOCAL_FALLBACK_MODEL:-qwen2.5-coder:7b}
MEMORY_DIR: /data/memory
STATE_DIR: /data/state
DEEPAGENTS_DEPLOYMENT_TOPOLOGY: ${DEEPAGENTS_DEPLOYMENT_TOPOLOGY:-split}
LANGGRAPH_DEPLOYMENT_URL: ${LANGGRAPH_DEPLOYMENT_URL:-}
LANGGRAPH_ASSISTANT_ID: ${LANGGRAPH_ASSISTANT_ID:-supervisor}
ASYNC_SUBAGENT_HOST: ${ASYNC_SUBAGENT_HOST:-127.0.0.1}
ASYNC_SUBAGENT_BASE_PORT: ${ASYNC_SUBAGENT_BASE_PORT:-30240}
MAX_SUBAGENTS: ${MAX_SUBAGENTS:-30}
CODING_AGENT_DEBUG: ${CODING_AGENT_DEBUG:-0}
volumes:
- ./workspace:/workspace
- coding-agent-memory:/data/memory
- coding-agent-state:/data/state
- coding-agent-deepagents:/root/.deepagents
working_dir: /workspace
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-fsS", "http://127.0.0.1:8501/_stcore/health"]
interval: 15s
timeout: 5s
retries: 10
start_period: 20s
ollama:
image: ollama/ollama:latest
profiles: ["with-ollama"]
ports:
- "11434:11434"
volumes:
- ollama-models:/root/.ollama
restart: unless-stopped
volumes:
coding-agent-memory:
coding-agent-state:
coding-agent-deepagents:
ollama-models: