-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
58 lines (55 loc) · 1.57 KB
/
Copy pathdocker-compose.yml
File metadata and controls
58 lines (55 loc) · 1.57 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
# Muster ops brain — no chat UI, no rooms, no Codex gateway.
# Chat is in Slack; this stack is REST + Mastra tools (+ optional status web).
x-ops-env: &ops-env
NODE_ENV: production
MUSTER_OPS_PORT: "3010"
MUSTER_OPS_TOKEN: ${MUSTER_OPS_TOKEN:-}
MUSTER_MASTRA_MODEL: ${MUSTER_MASTRA_MODEL:-openai/gpt-5-mini}
OPENAI_API_KEY: ${OPENAI_API_KEY:-}
TAWNY_BASE_URL: ${TAWNY_BASE_URL:-}
TAWNY_API_TOKEN: ${TAWNY_API_TOKEN:-}
KELPIE_BASE_URL: ${KELPIE_BASE_URL:-}
KELPIE_API_TOKEN: ${KELPIE_API_TOKEN:-}
BROLGA_BASE_URL: ${BROLGA_BASE_URL:-}
BROLGA_API_TOKEN: ${BROLGA_API_TOKEN:-}
MUSTER_FLEET_STALE_MINUTES: ${MUSTER_FLEET_STALE_MINUTES:-15}
MUSTER_CASE_AGING_HOURS: ${MUSTER_CASE_AGING_HOURS:-24}
services:
ops:
build:
context: .
dockerfile: Dockerfile
target: ops
environment:
<<: *ops-env
ports:
- "${MUSTER_OPS_PORT:-3010}:3010"
healthcheck:
test:
[
"CMD",
"node",
"-e",
"fetch('http://127.0.0.1:3010/health').then(r=>process.exit(r.ok?0:1)).catch(()=>process.exit(1))",
]
interval: 15s
timeout: 5s
retries: 5
start_period: 20s
restart: unless-stopped
web:
profiles: ["ui"]
build:
context: .
dockerfile: Dockerfile
target: web
environment:
NODE_ENV: production
MUSTER_OPS_URL: ${MUSTER_OPS_URL:-http://ops:3010}
MUSTER_OPS_TOKEN: ${MUSTER_OPS_TOKEN:-}
ports:
- "${MUSTER_WEB_PORT:-3000}:3000"
depends_on:
ops:
condition: service_healthy
restart: unless-stopped