Docker Deployment
Run the Elemm Gateway and Visual Dashboard using Docker containers.
Docker Deployment
With a single command, you start both the Visual Dashboard (port 8090) and the MCP Gateway (port 8000 via SSE):
Docker CLI
bash
docker run -d \
-p 8000:8000 \
-p 8090:8090 \
-v ~/.elemm:/root/.elemm \
--name elemm-gateway \
ghcr.io/v3rm1ll1on/elemm:latestDocker Compose (Recommended)
bash
docker compose up -dℹ️ NOTE
Mounting the
~/.elemm volume ensures your Security Policies and Credential Vault are securely persisted on your host machine.Claude Desktop SSE Connection
json
{
"mcpServers": {
"elemm-gateway": {
"type": "sse",
"url": "http://localhost:8000/sse"
}
}
}Open the Dashboard
Navigate to: http://localhost:8090