Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 881 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 881 Bytes

docker-vdirsyncer

A docker container which syncs your CalDAV/CardDAV calendars/addressbooks periodically.

This docker app uses pimutils/vdirsyncer to synchronize your CalDAV/CardDAV calendars/addressbooks between two servers.

Getting started

  1. create a vdirsyncer configuration file. See file config.example and vdirsyncer docs
  2. adapt docker-compose.yml to use your configuration file
  3. start the container via: docker-compose up -d

Be happy! The container will synchronize your calendars/addressbooks every 15 minutes.

docker-compose example

version: '3'
services:

  worker:
    image: kaergel/vdirsyncer
    volumes:
      - ./your_config_file:/home/vds/.config/vdirsyncer/config
    restart: always