-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
32 lines (30 loc) · 987 Bytes
/
docker-compose.yml
File metadata and controls
32 lines (30 loc) · 987 Bytes
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
version: '3.8'
services:
mcp-foxxy-bridge:
build: .
ports:
- "8080:8080"
volumes:
# Mount your bridge configuration
- ./bridge_config_example.json:/app/config/bridge_config.json:ro
# Optional: Mount additional directories for filesystem server
- ./data:/app/data:ro
environment:
# Add environment variables for MCP servers
- GITHUB_TOKEN=${GITHUB_TOKEN}
- BRAVE_API_KEY=${BRAVE_API_KEY}
command: ["--bridge-config", "/app/config/bridge_config.json", "--port", "8080", "--host", "0.0.0.0"]
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/status"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
# Optional: Add a simple web UI or monitoring
# watchtower:
# image: containrrr/watchtower
# volumes:
# - /var/run/docker.sock:/var/run/docker.sock
# command: --interval 30 --cleanup
# restart: unless-stopped