Initial commit
Some checks failed
CI / test (push) Failing after 11s
CI / image (push) Has been skipped

This commit is contained in:
2026-08-01 21:03:35 -04:00
commit 8b5cd370ea
41 changed files with 5462 additions and 0 deletions

25
docker-compose.yml Normal file
View File

@@ -0,0 +1,25 @@
services:
markdown-to-caldav:
build: .
image: markdown-to-caldav:latest
container_name: markdown-to-caldav
restart: unless-stopped
# Files written back into your notes must stay owned by you, not root.
# Defaults to 1000:1000; override in .env or the environment.
user: "${VAULT_UID:-1000}:${VAULT_GID:-1000}"
ports:
# Host 5233 avoids colliding with an existing Radicale on 5232.
- "127.0.0.1:5233:5232"
volumes:
- ${VAULT_PATH:-./vault}:/vault
- ./docker:/config:ro
- ./data:/data
environment:
MDCALDAV_CONFIG: /config/mdcaldav.toml
security_opt:
- no-new-privileges:true