Deploy authentik / deploy (push) Successful in 13s
Deploy dockhand / deploy (push) Successful in 7s
Deploy duplicati / deploy (push) Successful in 10s
Deploy immich / deploy (push) Failing after 6s
Deploy obsidian / deploy (push) Successful in 6s
Deploy Sencho / deploy (push) Failing after 5s
Deploy watchtower / deploy (push) Failing after 7s
18 lines
737 B
YAML
18 lines
737 B
YAML
services:
|
|
duplicati:
|
|
image: lscr.io/linuxserver/duplicati:latest
|
|
container_name: duplicati
|
|
environment:
|
|
- PUID=1000 # Your host user ID
|
|
- PGID=1000 # Your host group ID
|
|
- TZ=America/New_York
|
|
- SETTINGS_ENCRYPTION_KEY=84Jo17Ecw5muzGgqVjpeZQYnWBH7XFM7R01CdR646jSIfNbxgp # <-- Add this line
|
|
volumes:
|
|
- /home/miker/docker/duplicati/config:/config
|
|
- /home/miker/docker/immich/library:/source/photos:ro # Mounts your photo directory as read-only
|
|
- /home/miker/docker:/source/apps:ro # Mounts your application data files
|
|
- /home/miker/docker/duplicati/backups:/backups # Optional local backup location
|
|
ports:
|
|
- 8250:8200
|
|
restart: unless-stopped
|