ross-ultrix-mcp/docker-compose.yml

39 lines
802 B
YAML
Raw Normal View History

version: '3.8'
services:
ross-ultrix-mcp:
build:
context: .
dockerfile: Dockerfile
container_name: ross-ultrix-mcp
ports:
- "3000:3000"
environment:
- NODE_ENV=production
- MCP_SERVER_PORT=3000
- ROSS_TALK_HOST=${ROSS_TALK_HOST:-192.168.1.100}
- ROSS_TALK_PORT=${ROSS_TALK_PORT:-7788}
- LOG_LEVEL=${LOG_LEVEL:-info}
volumes:
- ./config:/app/config:ro
- ./logs:/app/logs
networks:
- ross-network
restart: unless-stopped
healthcheck:
test: ["CMD", "node", "dist/health-check.js"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
networks:
ross-network:
driver: bridge
ipam:
config:
- subnet: 172.20.0.0/16
volumes:
logs:
driver: local