Initial commit

This commit is contained in:
Jordan
2026-04-01 23:16:45 +01:00
commit bc4199aed2
201 changed files with 25612 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
name: acai-code-mcp
services:
redis:
image: redis:7-alpine
container_name: acai-redis
restart: unless-stopped
ports:
- "6379:6379"
volumes:
- redis-data:/data
command: redis-server --save 60 1 --loglevel warning
acai-mcp-server:
build: .
image: acai-mcp-server
container_name: acai-mcp-server
restart: unless-stopped
depends_on:
- redis
ports:
- "3010:3010" # MCP SSE endpoint
- "4545:4545" # Monitor UI
volumes:
- ./:/app
- /app/node_modules
command: npm run dev
env_file:
- .env
environment:
- MCP_PORT=3010
- MCP_MONITOR_PORT=4545
- REDIS_URL=redis://redis:6379
volumes:
redis-data: