From 536aedf7507fd8da9e174e3e0c84ed6132767b6c Mon Sep 17 00:00:00 2001 From: ZGaetano Date: Sun, 3 May 2026 23:45:12 -0400 Subject: [PATCH] Initial project setup with MCP server and Ross Talk protocol: docker-compose.yml --- docker-compose.yml | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..06a2ff1 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,39 @@ +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 \ No newline at end of file