Files
CariddiCTF/mcpServer/modules/docker-compose.yml

37 lines
615 B
YAML

services:
fetch:
build:
context: ./fetch
dockerfile: Dockerfile
ports:
- "3000:3000"
environment:
MCP_PORT: 3000
filesystem:
build:
context: ./filesystem
dockerfile: Dockerfile
ports:
- "3001:3001"
environment:
MCP_PORT: 3001
memory:
build:
context: ./memory
dockerfile: Dockerfile
ports:
- "3002:3002"
environment:
MCP_PORT: 3002
sequentialthinking:
build:
context: ./sequentialthinking
dockerfile: Dockerfile
ports:
- "3003:3003"
environment:
MCP_PORT: 3003