Does anyone have a compose.yaml for an Nvidia GPU that works that they would like to share? Here’s my current file, it gives a white screen with “server error” on it: https://pastebin.com/AaV17cTz
I went through Jellyfin’s instructions on setting a GPU up, but the instructions weren’t clear (in my opinion) so who knows if it’s correct. I installed some Nvidia tools as a prerequisite and ‘nvidia-smi’ shows the card. I attached my Jellyfin settings from before it self-destructed according to Nvidia’s transcoding matrix (which also wasn’t descriptive enough in my opinion), do they look right for a 2080?
Update: after making this post, and changing nothing, it suddenly works


Here’s mine, no judging for how I set the ip
name: jellyfin services: jellyfin: container_name: jellyfin.live networks: mynet: ipv4_address: 192.168.5.3 ports: - 8096:8096 volumes: - jellyfin-config:/config - jellyfin-cache:/cache - type: bind source: /mnt target: /Media Disk 1 - type: bind source: /mnt target: /Media Disk 2 - type: bind source: /mnt target: /Media Disk 3 environment: - HEALTHCHECK_URL=192.168.5.3 restart: unless-stopped deploy: resources: reservations: devices: - driver: nvidia count: all capabilities: - gpu image: jellyfin/jellyfin:latest networks: mynet: external: true name: mynet volumes: jellyfin-config: external: true name: jellyfin-config jellyfin-cache: external: true name: jellyfin-cacheThe section on the GPU looks like yours. I had to do something to get it working, but it’s been forever.