Files
mcp-ics/docker-compose.yml

18 lines
449 B
YAML
Raw Normal View History

2026-03-15 19:22:18 -04:00
services:
mcp-server:
build:
context: .
dockerfile: pkg/Dockerfile
container_name: mcp_caldav_server
ports:
- "127.0.0.1:8000:8000"
env_file:
- .env
volumes:
# Mount the source code for hot-reloading (optional)
- ./src:/app/src:ro,z
# Mount the Radicale data directory as read-only
- ${CALDAV_DATA_PATH:-./example_data}:/data:ro,z
environment:
- CALDAV_DATA_PATH=/data