Docker Apps and UUID issue with NVIDIA GPU after upgrade to 24.10 or 25.04

Thanks a lot for this thread, it stopped working for me in jellyfin after i changed GPU to 1660 TI and updated to 25.10.

Command to find out details of the GPU:

midclt call app.gpu_choices | jq

My output:

{
  "0000:07:00.0": {
    "vendor": "NVIDIA",
    "description": "NVIDIA GeForce GTX 1660 Ti",
    "error": null,
    "vendor_specific_config": {
      "uuid": "GPU-0ea5b7e6-5d2a-c514-a260-c136f9625e55"
    },
    "gpu_details": {
      "addr": {
        "pci_slot": "0000:07:00.0",
        "domain": "0000",
        "bus": "07",
        "slot": "00"
      },
      "description": "NVIDIA Corporation TU116 [GeForce GTX 1660 Ti]",
      "devices": [],
      "vendor": "NVIDIA",
      "uses_system_critical_devices": false,
      "critical_reason": null,
      "available_to_host": true
    },
    "pci_slot": "0000:07:00.0"
  }
}

Safter copying pci slot: 0000:07:00.0 and uuid: GPU-0ea5b7e6-5d2a-c514-a260-c136f9625e55 command that solved my issue was:

midclt call -j app.update jellyfin-truenas '{"values": {"resources": {"gpus": {"use_all_gpus": false, "nvidia_gpu_selection": {"0000:07:00.0": {"use_gpu": true, "uuid": "GPU-0ea5b7e6-5d2a-c514-a260-c136f9625e55"}}}}}}'

Thanks again and have a good server everyone :slight_smile: