2024-04-29, 06:29 PM
I missed this in the first post. You did not add the render group to your compose file. Adding the "group_add" line to your compose. An example from mine is below.
Use the "getent group render" command to get the group ID for render on your PC.
Code:
services:
jellyfin:
image: jellyfin/jellyfin:unstable
container_name: jellyfin-unstable
user: 105:104
group_add:
- "993" # Intel render group
network_mode: 'host'
volumes:
- ./jellyfin-data/config:/config
- ./jellyfin-data/cache:/cache
- /media:/media:ro
devices:
- /dev/dri/renderD128:/dev/dri/renderD128
restart: 'unless-stopped'
extra_hosts:
- "host.docker.internal:host-gateway"
Use the "getent group render" command to get the group ID for render on your PC.