2024-11-17, 02:10 AM
You did not pass the GPU into the container nor the render group ID.
https://jellyfin.org/docs/general/admini...ial-docker
Run this to get the render group ID
Then add this to the docker compose. Replace "122" with the value from the previous command.
Then pass in the GPU.
https://jellyfin.org/docs/general/admini...ial-docker
Run this to get the render group ID
Code:
getent group render | cut -d: -f3Then add this to the docker compose. Replace "122" with the value from the previous command.
Code:
group_add:
- "122" # Change this to match your "render" host group id and remove this commentThen pass in the GPU.
Code:
devices:
- /dev/dri/renderD128:/dev/dri/renderD128
