Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/kaergel/docker-vdirsyncer
- Owner: kaergel
- License: mit
- Created: 2018-01-16T16:25:42.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-17T09:12:57.000Z (almost 7 years ago)
- Last Synced: 2024-02-13T21:59:20.856Z (11 months ago)
- Topics: addressbook, caldav, carddav, carddav-calendars, docker, python, vdirsyncer
- Language: Shell
- Homepage:
- Size: 5.86 KB
- Stars: 7
- Watchers: 2
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```