32 lines
920 B
YAML
32 lines
920 B
YAML
services:
|
|
qdrant:
|
|
image: docker.io/qdrant/qdrant:latest
|
|
container_name: mcp_maildir_qdrant
|
|
ports:
|
|
- "127.0.0.1:6333:6333" # REST API
|
|
- "127.0.0.1:6334:6334" # gRPC API
|
|
volumes:
|
|
- ./qdrant_storage:/qdrant/storage:z
|
|
restart: unless-stopped
|
|
|
|
mcp-server:
|
|
build:
|
|
context: .
|
|
dockerfile: pkg/Dockerfile
|
|
container_name: mcp_maildir_server
|
|
ports:
|
|
- "127.0.0.1:8000:8000" # Expose the MCP HTTP (SSE) server
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
# Override Qdrant URL to point to the docker-compose service
|
|
- QDRANT_URL=http://qdrant:6333
|
|
volumes:
|
|
# Mount the source code for hot-reloading (optional)
|
|
- ./src:/app/src:ro,z
|
|
# Mount the maildir dump as read-only.
|
|
# Ensure you set MAILDIR_PATH in your .env file
|
|
- ${MAILDIR_PATH:-./maildir_dump}:/path/to/your/maildir/dump:ro,z
|
|
depends_on:
|
|
- qdrant
|