- 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
13 lines
318 B
YAML
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
|