From f61c974f837e3156937cc76bde2a307f40a81335 Mon Sep 17 00:00:00 2001 From: borgal Date: Wed, 29 Sep 2021 14:43:18 +0000 Subject: [PATCH] =?UTF-8?q?Dublicati=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dublicati/.env.sample | 2 ++ dublicati/docker-compose.yml | 26 ++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 dublicati/.env.sample create mode 100644 dublicati/docker-compose.yml diff --git a/dublicati/.env.sample b/dublicati/.env.sample new file mode 100644 index 0000000..632619a --- /dev/null +++ b/dublicati/.env.sample @@ -0,0 +1,2 @@ +NFS_SERVER=192.168.0.xxx # oder hostname oder Domain +PFAD=/Pfad/zum/Ordner \ No newline at end of file diff --git a/dublicati/docker-compose.yml b/dublicati/docker-compose.yml new file mode 100644 index 0000000..c65802a --- /dev/null +++ b/dublicati/docker-compose.yml @@ -0,0 +1,26 @@ +version: "2.1" +services: + duplicati: + image: ghcr.io/linuxserver/duplicati + container_name: duplicati + environment: + - PUID=0 + - PGID=0 + - TZ=Europe/Berlin + - CLI_ARGS= #optional + volumes: + - ./config:/config + - backup:/backups + - /opt:/source + ports: + - 8200:8200 + restart: unless-stopped + +volumes: + backup: + name: backup + driver: local + driver_opts: + type: nfs + o: addr=${NFS_SERVER},rw + device: ":${PFAD}"