Urbackup listing single out of many backups for user

Hello,

I got a system that backups just fine but when i navigate to the actual backups it shows a single a backup which is obviously wrong. Any way to fix this? this seems to be a issue with this one client

image


Hello

Please can you give more information about your environment, did you made any migration??
Are you using the application installed on the host or it’s in docker??

I am using Portainer on top of TrueNAS in which i use compose.
I have not made any migrations yet.

services:
  urbackup:
    image: uroni/urbackup-server:latest-zfs
    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=Europe/Amsterdam # Enter your timezone
    volumes:
      - /mnt/CHONK/backups/urbackup/database:/var/urbackup
      - /mnt/CHONK/backups/urbackup/backup:/backups
      - /mnt/CHONK/backups/urbackup/www:/usr/share/urbackup
      # Uncomment the next line if you want to bind-mount the www-folder
      #- /path/to/wwwfolder:/usr/share/urbackup
    cap_add:
      - SYS_NICE      
    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