File size: 456 Bytes
b6fb194 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | version: '3.8'
services:
mcp-bbmap:
build: .
image: mcp-bbmap:latest
container_name: mcp-bbmap
ports:
- "8000:8000"
environment:
- MCP_SERVER_NAME=bbmap
volumes:
- ./workspace:/app/workspace
- ./output:/app/output
restart: unless-stopped
healthcheck:
test: ["CMD", "python", "-c", "import sys; sys.exit(0)"]
interval: 30s
timeout: 10s
retries: 3
start_period: 5s
|