Fabian Peter Hammerle 662d9f564c readme: added some emojis to title | il y a 5 ans | |
---|---|---|
Dockerfile | il y a 5 ans | |
README.md | il y a 5 ans | |
config | il y a 5 ans | |
docker-compose.yml | il y a 5 ans | |
htpasswd | il y a 5 ans |
CalDAV (calendars, todo-lists) and CardDAV (contacts) server
Example:
[auth]
type = htpasswd
htpasswd_filename = /etc/radicale/htpasswd
htpasswd_encryption = bcrypt
[rights]
type = authenticated
Store credentials
htpasswd -cB htpasswd alice
htpasswd -B htpasswd bob
Test config
docker run --rm \
-v $PWD/config:/etc/radicale/config \
-v $PWD/htpasswd:/etc/radicale/htpasswd \
-p 5232:5232 fphammerle/radicale
Start daemon
docker run --name radicale \
-v $PWD/config:/etc/radicale/config:ro \
-v $PWD/htpasswd:/etc/radicale/htpasswd:ro \
-v radicale-collections:/var/lib/radicale/collections:rw \
--detach --restart unless-stopped \
-p 5232:5232 \
fphammerle/radicale
git clone https://github.com/fphammerle/docker-radicale
cd docker-radicale
docker-compose up