-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
41 lines (39 loc) · 1.29 KB
/
Copy pathdocker-compose.yml
File metadata and controls
41 lines (39 loc) · 1.29 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
# ─── AgentLens + MCPlex — The Superman Duo ──────────────────────────────
# Run both services together. MCPlex auto-forwards events to AgentLens.
#
# Usage:
# docker-compose up
#
# AgentLens UI: http://localhost:3000
# MCPlex Gateway: http://localhost:3100/mcp
# MCPlex Dashboard: http://localhost:9090
# ─────────────────────────────────────────────────────────────────────────
services:
agentlens:
build:
context: ../agentlens
dockerfile: Dockerfile
ports:
- "3000:3000"
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "--spider", "-q", "http://localhost:3000"]
interval: 10s
timeout: 5s
retries: 3
mcplex:
build:
context: ../mcplex
dockerfile: Dockerfile
ports:
- "3100:3100"
- "9090:9090"
volumes:
- ./mcplex.toml:/app/mcplex.toml:ro
environment:
# Enable the AgentLens bridge — events flow automatically
AGENTLENS_URL: "http://agentlens:3000/api/ingest"
depends_on:
agentlens:
condition: service_healthy
restart: unless-stopped