From 25ab204ac5802d63321ff4beafc1ccbe54161f90 Mon Sep 17 00:00:00 2001 From: Gabe Date: Sun, 15 Feb 2026 23:14:33 +0000 Subject: [PATCH] Add Backup_Containers/urbackup/compose.yaml --- Backup_Containers/urbackup/compose.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Backup_Containers/urbackup/compose.yaml diff --git a/Backup_Containers/urbackup/compose.yaml b/Backup_Containers/urbackup/compose.yaml new file mode 100644 index 0000000..1ffbbe2 --- /dev/null +++ b/Backup_Containers/urbackup/compose.yaml @@ -0,0 +1,24 @@ +services: + urbackup: + image: uroni/urbackup-server:latest + container_name: urbackup + restart: unless-stopped + environment: + - PUID=1000 # Enter the UID of the user who should own the files here + - PGID=100 # Enter the GID of the user who should own the files here + - TZ=America/Chicago # Enter your timezone + # Uncomment the next lines if you want to set the ZFS datasets via ENV variables instead of mounting /etc/urbackup/dataset* + #- ZFS_IMAGE=tank/images + #- ZFS_FILES=tank/files + volumes: + - /srv/docker/urbackup/database:/var/urbackup + - /mnt/urbackup/backups:/backups + # Uncomment the next line if you want to bind-mount the www-folder + #- /path/to/wwwfolder:/usr/share/urbackup + network_mode: "host" + # Uncomment the following two lines if you're using BTRFS support + #cap_add: + # - SYS_ADMIN + # Uncomment the following two lines if you're using ZFS support + #devices: + # - /dev/zfs:/dev/zfs \ No newline at end of file