Files
Docker-Compose/Duplicati/docker-compose.yml
MohandL3G 9cf711fc67 Normalize quoting and whitespace in compose files
Standardize formatting across multiple docker-compose.yml files: convert single quotes to double quotes for ports/args, fix inconsistent newlines at EOF, remove trailing spaces and stray blank lines, and tidy comments. Reformat ListSync healthcheck into a YAML sequence for clarity. Remove the obsolete Immich/docker-compose.yml.old file. These are non-functional cleanup changes to improve consistency and readability.
2026-02-12 20:44:54 +02:00

22 lines
602 B
YAML

---
services:
duplicati:
image: lscr.io/linuxserver/duplicati:latest
container_name: duplicati
hostname: MohandL3G
environment:
- PUID=1000
- PGID=1000
- TZ=Africa/Tripoli
- SETTINGS_ENCRYPTION_KEY=9199@mhD@9199
- CLI_ARGS= #optional
- DUPLICATI__WEBSERVICE_PASSWORD=9199@mhD #optional
volumes:
- C:\Docker\AppData\duplicati\config:/config
- C:\Docker\AppData\duplicati\backups:/backups
- C:\Docker\AppData\duplicati\source:/source
- C:\Docker:/source/dockerdata
ports:
- 8200:8200
restart: unless-stopped