32 lines
778 B
Markdown
32 lines
778 B
Markdown
---
|
|
obj: application
|
|
website: https://radicale.org/v3.html
|
|
---
|
|
|
|
# Radicale
|
|
Radicale is a [WebDAV](../../internet/WebDAV.md) Server for CalDAV and CardDAV.
|
|
|
|
## 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
|
|
```
|