19 lines
555 B
YAML
19 lines
555 B
YAML
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"
|