Files
komodo-mcp-server/docker-compose.yml
T
bot-hermes b4301285e5 fix: execute tool param mapping + docker-compose port 9801
- execute: map each operation to correct Komodo API param key
  (stack ops use 'stack', build ops use 'build', etc.)
- execute: container ops pass server alongside container name
- docker-compose: use host port 9801 to avoid conflict with
  existing bare node process on 9800
2026-09-08 15:32:00 +00:00

13 lines
318 B
YAML

services:
mcp:
build: .
container_name: komodo-mcp-server
ports:
- "9801:9800"
environment:
- KOMODO_BASE_URL=${KOMODO_BASE_URL:-http://10.10.2.114:9120}
- KOMODO_API_KEY=${KOMODO_API_KEY}
- KOMODO_API_SECRET=${KOMODO_API_SECRET}
- PORT=9800
restart: unless-stopped