NoteDiscovery/mcp_server_http/docker-compose.yml

19 lines
555 B
YAML
Raw Permalink Normal View History

2026-07-14 01:20:19 +00:00
version: "3.8"
services:
mcp-server-http:
build:
context: ..
dockerfile: mcp_server_http/Dockerfile
ports:
- "8001:8001"
environment:
- PORT=8001
- HOST=0.0.0.0
# URL to reach NoteDiscovery. Change this to the actual host/port
# or docker service name if part of a larger compose network.
- NOTEDISCOVERY_URL=http://host.docker.internal:8000
# extra_hosts is used so it can reach the host network if NoteDiscovery runs locally
extra_hosts:
- "host.docker.internal:host-gateway"