Using Docker Hub Images
Frequently Asked Questions
How do I connect the Docker container to a local FalkorDB instance?
How do I connect the Docker container to a local FalkorDB instance?
Use
FALKORDB_HOST=host.docker.internal to connect from inside the Docker container to a FalkorDB instance running on your host machine. Set FALKORDB_PORT=6379 (or your custom port).How do I secure my Docker deployment?
How do I secure my Docker deployment?
Set the
MCP_API_KEY environment variable to require Bearer token authentication for all HTTP requests. Use -e MCP_API_KEY=your-secret-key when running the container.Which port does the MCP Server expose in Docker?
Which port does the MCP Server expose in Docker?
The MCP Server exposes port 3000 by default when running in HTTP transport mode. Map it with
-p 3000:3000 in your Docker run command.