Skip to content

Simple dockerized setup of Radicale CalDav/CardDav server

License

Notifications You must be signed in to change notification settings

Morreski/radicale-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Radicale-Docker

Simple dockerization of the Radicale CalDav/CardDav server

Setup

Variables

  • $RADICALE_DIR: Folder on host file system where radicale related stuff will be stored
  • $PORT: Exposed port on host machine

Build the image

docker build -t radicale:testing .

Copy the config from this repository to $RADICALE_DIR

cp config.ini $RADICALE_DIR

Run it

docker run \
    -it \
    --rm  \
    -v $RADICALE_DIR:/srv/radicale \
    -p $PORT:5232 \
    --name radicale \
    radicale:testing

Create user

docker exec -it radicale htpasswd -B /srv/radicale/users $USERNAME

No need to restart the server afterward

About

Simple dockerized setup of Radicale CalDav/CardDav server

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published