From 159d2a40fffe1c4c31d50f13425fc5c91e2f9357 Mon Sep 17 00:00:00 2001 From: Charles Szilagyi Date: Tue, 11 Feb 2025 15:44:52 +0000 Subject: [PATCH] fix(service): Improve duplicati.yaml (#4971) - Generate random encryption secret - Generate random web login password - Make TZ show up in the UI --- templates/compose/duplicati.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/templates/compose/duplicati.yaml b/templates/compose/duplicati.yaml index 00a66095f..6ce37dd0b 100644 --- a/templates/compose/duplicati.yaml +++ b/templates/compose/duplicati.yaml @@ -11,7 +11,9 @@ services: - SERVICE_FQDN_DUPLICATI_8200 - PUID=1000 - PGID=1000 - - TZ=Europe/Madrid + - TZ=${TZ:-Europe/London} + - SETTINGS_ENCRYPTION_KEY=${SERVICE_PASSWORD_ENCRYPT} + - DUPLICATI__WEBSERVICE_PASSWORD=${SERVICE_PASSWORD_WEB} volumes: - duplicati-config:/config - duplicati-backups:/backups