mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-26 10:15:56 +01:00
19 lines
349 B
YAML
19 lines
349 B
YAML
---
|
|
version: '2.1'
|
|
|
|
services:
|
|
|
|
duplicati:
|
|
image: ghcr.io/linuxserver/duplicati
|
|
container_name: duplicati
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Europe/Berlin
|
|
volumes:
|
|
- /AmberPRO/duplicati/config:/config
|
|
- /Backups:/backups
|
|
- /:/source
|
|
ports:
|
|
- 8200:8200
|
|
restart: unless-stopped |