knowledge/technology/applications/web/Radicale.md

33 lines
778 B
Markdown
Raw Normal View History

2023-12-04 10:02:23 +00:00
---
obj: application
website: https://radicale.org/v3.html
---
2024-03-19 08:25:42 +00:00
2023-12-04 10:02:23 +00:00
# Radicale
2024-01-17 08:00:45 +00:00
Radicale is a [WebDAV](../../internet/WebDAV.md) Server for CalDAV and CardDAV.
2023-12-04 10:02:23 +00:00
## Install
Based on [this repo](https://github.com/fphammerle/docker-radicale)
Configuration is in config file. User Authentication in httpasswd:
```yaml
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
```