This commit is contained in:
JMARyA 2023-12-04 11:02:23 +01:00
commit c5cd492449
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
475 changed files with 27928 additions and 0 deletions

View file

@ -0,0 +1,32 @@
---
obj: application
os: web
website: https://radicale.org/v3.html
---
# Radicale
Radicale is a [WebDAV](../../tools/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
```