Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kaergel/docker-vdirsyncer

A docker container which syncs your CalDAV/CardDAV calendars/addressbooks periodically
https://github.com/kaergel/docker-vdirsyncer

addressbook caldav carddav carddav-calendars docker python vdirsyncer

Last synced: 2 months ago
JSON representation

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

Awesome Lists containing this project

README

        

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

This docker app uses [pimutils/vdirsyncer](https://vdirsyncer.pimutils.org/) to synchronize your CalDAV/CardDAV calendars/addressbooks between two servers.

### Getting started

1. create a vdirsyncer configuration file. See file [_config.example_](https://github.com/pimutils/vdirsyncer/blob/master/config.example) and [vdirsyncer docs](https://vdirsyncer.pimutils.org/)
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
```