11notes / docker-radicale

CalDAV and CardDAV server with LDAP/AD authentication
GNU General Public License v3.0
5 stars 1 forks source link

Banner

🏔️ Alpine - Radicale

size version pulls stars

CalDAV and CardDAV server with LDAP/AD authentication

SYNOPSIS

What can I do with this? This image will run Radicale with an additional LDAP/AD authentication plugin. You can use this image to store or share calendars or address books, or both. Create fine grained ACL via the rights config, where you can give certain people read-only access to objects in your shared address books or calendars.

VOLUMES

COMPOSE

services:
  radicale:
    image: "11notes/radicale:3.1.9"
    container_name: "radicale"
    environment:
      TZ: Europe/Zurich
    ports:
      - "5232:5232/tcp"
    volumes:
      - "etc:/radicale/etc"
      - "var:/radicale/var"
volumes:
  etc:
  var:

EXAMPLES

config /radicale/etc/default.conf

[server]
ssl = True
hosts = 0.0.0.0:5232
max_connections = 1024
max_content_length = 52428800
certificate = /radicale/ssl/cert.pem
key = /radicale/ssl/key.pem

[storage]
type = multifilesystem_nolock
filesystem_folder = /radicale/var

[auth]
type = htpasswd
htpasswd_filename = /radicale/etc/users
htpasswd_encryption = bcrypt

[rights]
type = from_file
file = /radicale/etc/rights

config /radicale/etc/default.conf with LDAP/AD

[server]
ssl = True
hosts = 0.0.0.0:5232
max_connections = 1024
max_content_length = 52428800
certificate = /radicale/ssl/cert.pem
key = /radicale/ssl/key.pem

[storage]
type = multifilesystem_nolock
filesystem_folder = /radicale/var

[auth]
type = radicale_auth_ldap
ldap_url = ldaps://domain.com:636
ldap_base = DC=domain,DC=com
ldap_attribute = userPrincipalName
ldap_filter = (objectCategory=person)(objectClass=user)(memberOf:1.2.840.113556.1.4.1941:=CN=Radicale Users,DC=domain,DC=com)
ldap_binddn = CN=ldap.radicale,DC=domain,DC=com
ldap_password = *************

[rights]
type = from_file
file = /radicale/etc/rights

DEFAULT SETTINGS

Parameter Value Description
user docker user docker
uid 1000 user id 1000
gid 1000 group id 1000
home /radicale home directory of user docker
config /radicale/etc/default.yaml config
rights /radicale/etc/rights ACL
users /radicale/etc/users users for bcrypt authentication
users:admin password for admin user (demo) 1234

ENVIRONMENT

Parameter Value Default
TZ Time Zone
DEBUG Show debug information

SOURCE

PARENT IMAGE

BUILT WITH

TIPS

ElevenNotes™️

This image is provided to you at your own risk. Always make backups before updating an image to a new version. Check the changelog for breaking changes. You can find all my repositories on github.