Hi,
i try to use duplicati as docker container. but i have problems with some settings. my yaml looks like this:
services:
duplicati:
image: duplicati/duplicati:latest
container_name: duplicati
restart: unless-stopped
ports:
- "8200:8200" # Exponiere den Webport
volumes:
- /opt/docker_container/Duplicati/data:/data # Speichert die Konfigurationsdateien
- /opt/docker_container/Duplicati/backups:/backups # Speichert die Backup-Daten
- /path/to/documents:/source
environment:
- TZ=Europe/Berlin # Zeitzone anpassen
- DUPLICATI__WEBSERVICE_PASSWORD=pw
In general it work and i can set backups. but when i change my Gui password its not persistant. I tried removing - DUPLICATI__WEBSERVICE_PASSWORD=pw after setting a new without success (also restart container). In the gui under settings, i also cannot set remote acces to off. I mean i can but not persistant. I tried to access the container an set it manual in the database but without succes as well. Also i didn´t found /etc/ssh/ in the container so maybe its not a topic?! Also docker log duplicati say that my databas isn´t encrypted. Would love to know how to set encryption pesistent.
Any help welcome