Jellyfin docker with AMD passthrough?

devilsfruit

Cadet
Joined
Jun 17, 2021
Messages
5
Hi guys,

I've fInally registered in order to be able to ask this question :). I read the developer notes and saw that it is possible to passthrough Intel iGPU and Nvidia GPU's with docker. However, I have an AMD card and I'd like to pass that through to my Jellyfin docker (based on the Truecharts repo through the applications overview).

https://jellyfin.org/docs/general/administration/hardware-acceleration.html says that VAAPI should be possible with AMD GPU's.

For example with docker compose, the line(s) below #VAAPI devices:

Code:
version: "3"
services:
  jellyfin:
    image: jellyfin/jellyfin
    user: 1000:1000
    group_add:
      - 122
    network_mode: "host"
    volumes:
      - /path/to/config:/config
      - /path/to/cache:/cache
      - /path/to/media:/media
    devices:
      # VAAPI Devices
      - /dev/dri/renderD128:/dev/dri/renderD128
      - /dev/dri/card0:/dev/dri/card0
      # RPi 4
      - /dev/vchiq:/dev/vchiq


I'm quite a noob when it comes to Docker and from reading all of the documentation/threads available, I'm also seeing things about Kubernetes, which makes it more difficult for me to understand. I'm sorry if I'm asking something very obvious.;
 
Top