init
This commit is contained in:
commit
c5cd492449
475 changed files with 27928 additions and 0 deletions
32
technology/applications/web/Radicale.md
Normal file
32
technology/applications/web/Radicale.md
Normal 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
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue