Files
mc-ai-bridge/docker-compose.yml
SysAdmin df8b367e8c
All checks were successful
Deploy to Docker / deploy (push) Successful in 1m20s
feat: increase MAX_BUILD_COMMANDS to 15000 for large schematics
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-17 02:35:15 +00:00

19 lines
411 B
YAML

services:
mc-ai-bridge:
build: .
container_name: mc-ai-bridge
ports:
- "3001:3001" # Minecraft WebSocket
- "3002:3002" # MCP SSE transport
environment:
- WS_PORT=3001
- MCP_PORT=3002
- NODE_ENV=production
- MAX_BUILD_COMMANDS=15000
volumes:
- schematic-cache:/app/cache
restart: unless-stopped
volumes:
schematic-cache: