28 lines
662 B
YAML
28 lines
662 B
YAML
name: duplicati
|
|
services:
|
|
app:
|
|
image: lscr.io/linuxserver/duplicati:latest
|
|
user: root
|
|
environment:
|
|
- PUID=0
|
|
- PGID=0
|
|
- TZ=Europe/Amsterdam
|
|
- CLI_ARGS=
|
|
volumes:
|
|
- /mnt/services/duplicati/data:/config
|
|
- /mnt:/mnt
|
|
ports:
|
|
- 8200:8200
|
|
extra_hosts:
|
|
- host.docker.internal:host-gateway
|
|
restart: unless-stopped
|
|
# command: [ "/app/duplicati/duplicati", "--webservice-password=Test123" ]
|
|
|
|
notifications:
|
|
image: ghcr.io/vleeuwenmenno/duplicati-discord-notification:main
|
|
ports:
|
|
- 5334:5000
|
|
extra_hosts:
|
|
- host.docker.internal:host-gateway
|
|
restart: unless-stopped
|