2024-10-07, 07:20 PM
Almost certainly. You have to both pass in the device and pass in the render group ID.
https://jellyfin.org/docs/general/admini...ualization
My docker compose for reference.
https://jellyfin.org/docs/general/admini...ualization
My docker compose for reference.
Code:
jellyfin-prod:
image: jellyfin/jellyfin:10.9.11
container_name: jellyfin-prod
user: 1002:1002
group_add:
- "993" # Intel render group
networks:
blackmoon:
ipv4_address: 172.16.100.10
expose:
- 8096
volumes:
- ./jellyfin-prod-data/config:/config
- ./jellyfin-prod-data/cache:/cache
- /media/library:/media/library
- /media/ramdisk:/media/ramdisk
devices:
- /dev/dri/renderD128:/dev/dri/renderD128
environment:
- TZ=America/New_York
restart: unless-stopped