Files
mcp-ics/docker-compose.yml
Julien Cabillot ee0d719142
All checks were successful
perso/mcp-ics/pipeline/head This commit looks good
feat: init
2026-03-15 19:35:49 -04:00

18 lines
449 B
YAML

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