From b19d017a66a3940caa2b4e9d24386bfd834ab174 Mon Sep 17 00:00:00 2001 From: Manuel Schneider Date: Mon, 4 May 2026 08:14:16 +0200 Subject: [PATCH] fix docker-compose requirements for duplicati --- blueprints/duplicati/docker-compose.yml | 10 ++++++---- blueprints/duplicati/template.toml | 1 + meta.json | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/blueprints/duplicati/docker-compose.yml b/blueprints/duplicati/docker-compose.yml index b731a6a1..2a6df944 100644 --- a/blueprints/duplicati/docker-compose.yml +++ b/blueprints/duplicati/docker-compose.yml @@ -1,6 +1,8 @@ +version: '3.8' services: duplicati: - image: 'lscr.io/linuxserver/duplicati:latest' + image: 'lscr.io/linuxserver/duplicati:${APP_RELEASE:-2.3.0}' + restart: unless-stopped environment: - SERVICE_URL_DUPLICATI_8200 - PUID=0 @@ -10,9 +12,9 @@ services: - 'DUPLICATI__WEBSERVICE_PASSWORD=${SERVICE_PASSWORD_WEB}' volumes: - 'duplicati-config:/config' - - '/path/to/backups:/backups' - - '/path/to/source:/source' - - '/path/to/restore:/restore' + - '../files/backups:/backups' + - '../files/source:/source' + - '../files/restore:/restore' healthcheck: test: diff --git a/blueprints/duplicati/template.toml b/blueprints/duplicati/template.toml index 42b90ece..5f07e723 100644 --- a/blueprints/duplicati/template.toml +++ b/blueprints/duplicati/template.toml @@ -9,5 +9,6 @@ host = "${main_domain}" [config.env] TZ = "Europe/Vienna" +APP_RELEASE = "2.3.0" SETTINGS_ENCRYPTION_KEY = "${password:32}" DUPLICATI__WEBSERVICE_PASSWORD = "${password:16}" diff --git a/meta.json b/meta.json index 04a298a3..fdd45ada 100644 --- a/meta.json +++ b/meta.json @@ -1638,7 +1638,7 @@ { "id": "duplicati", "name": "Duplicati", - "version": "latest", + "version": "2.3.0", "description": "Duplicati is a free, open-source backup solution that offers zero-trust, fully encrypted backups for your data", "logo": "logo.png", "links": {