-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
91 lines (88 loc) · 2.76 KB
/
docker-compose.yml
File metadata and controls
91 lines (88 loc) · 2.76 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
services:
# Dashboard — Flask + React (single container)
dashboard:
build:
context: .
dockerfile: Dockerfile.dashboard
container_name: evonexus-dashboard
ports:
- "${EVONEXUS_PORT:-8080}:8080"
env_file: .env
environment:
- TZ=America/Sao_Paulo
- EVONEXUS_PORT=8080
volumes:
- ./.env:/workspace/.env:ro
- ./config:/workspace/config:ro
- ./workspace:/workspace/workspace
- ./dashboard/data:/workspace/dashboard/data
- ./.claude/agents:/workspace/.claude/agents:ro
- ./.claude/skills:/workspace/.claude/skills:ro
- ./.claude/commands:/workspace/.claude/commands:ro
- ./.claude/templates:/workspace/.claude/templates:ro
- ./memory:/workspace/memory:ro
- ./ADWs/logs:/workspace/ADWs/logs:ro
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/api/version"]
interval: 30s
timeout: 10s
retries: 3
start_period: 15s
# Telegram — bot that listens for messages
telegram:
build: .
container_name: evonexus-telegram
entrypoint: ["claude"]
command: ["--channels", "plugin:telegram@claude-plugins-official", "--dangerously-skip-permissions"]
env_file: .env
environment:
- TZ=America/Sao_Paulo
- ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY}
volumes:
- daily-logs:/workspace/workspace/daily-logs
- projects:/workspace/workspace/projects
- community:/workspace/workspace/community
- financial:/workspace/workspace/finance
- personal:/workspace/workspace/personal
- meetings:/workspace/workspace/meetings
- strategy:/workspace/workspace/strategy
- memory:/workspace/memory
- adw-logs:/workspace/ADWs/logs
- agent-memory:/workspace/.claude/agent-memory
restart: unless-stopped
stdin_open: true
tty: true
# Runner on-demand — to execute routines manually
# Usage: docker compose run --rm runner ADWs/routines/good_morning.py
runner:
build: .
container_name: evonexus-runner
env_file: .env
environment:
- TZ=America/Sao_Paulo
- ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY}
volumes:
- daily-logs:/workspace/workspace/daily-logs
- projects:/workspace/workspace/projects
- community:/workspace/workspace/community
- financial:/workspace/workspace/finance
- personal:/workspace/workspace/personal
- meetings:/workspace/workspace/meetings
- strategy:/workspace/workspace/strategy
- memory:/workspace/memory
- adw-logs:/workspace/ADWs/logs
- agent-memory:/workspace/.claude/agent-memory
profiles:
- manual
volumes:
daily-logs:
projects:
community:
financial:
personal:
meetings:
strategy:
memory:
adw-logs:
agent-memory: