diff --git a/dublicati/.env.sample b/dublicati/.env.sample deleted file mode 100644 index 632619a..0000000 --- a/dublicati/.env.sample +++ /dev/null @@ -1,2 +0,0 @@ -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 deleted file mode 100644 index c65802a..0000000 --- a/dublicati/docker-compose.yml +++ /dev/null @@ -1,26 +0,0 @@ -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}"