778 B
778 B
obj | website |
---|---|
application | https://radicale.org/v3.html |
Radicale
Radicale is a WebDAV Server for CalDAV and CardDAV.
Install
Based on this repo
Configuration is in config file. User Authentication in httpasswd:
version: '2.2'
services:
radicale:
build: .
# image: fphammerle/radicale
volumes:
- ./config:/etc/radicale/config:ro
- ./htpasswd:/etc/radicale/htpasswd:ro
- ./ssh:/var/lib/radicale/.ssh:rw
- ./data:/var/lib/radicale/collections:rw
read_only: true
ports: ['0.0.0.0:5232:5232']
cap_drop: [ALL]
security_opt: [no-new-privileges]
mem_limit: 128M
cpu_quota: 5000
cpu_period: 10000
restart: unless-stopped