2025-04-06, 04:20 AM
After modifying the docker yaml to be the official image and making the corresponding changes, transcoding seems to be running properly! I really appreciate your help throughout this.
Got slightly paranoid about removing the groups just in case, but here's the latest yaml if anyone else wants it. Gonna call it a night and remove the jellyfin-opencl-intel mod and groups later, but this works really well!
Got slightly paranoid about removing the groups just in case, but here's the latest yaml if anyone else wants it. Gonna call it a night and remove the jellyfin-opencl-intel mod and groups later, but this works really well!
Code:
---
services:
jellyfin:
image: ghcr.io/jellyfin/jellyfin:latest
devices:
- /dev/dri:/dev/dri
#privileged: true
group_add:
- "992" # getent group render | cut -d: -f3
- "44" # getent group video | cut -d: -f3
- "995" # getent group input | cut -d: -f3
container_name: jellyfin
environment:
- UID=1000
- GID=1000
- TZ=Etc/UTC
- JELLYFIN_PublishedServerUrl=192.168.0.116 #optional
- DOCKER_MODS=linuxserver/mods:jellyfin-opencl-intel
volumes:
- /home/dreadserver/jellyfin/config:/config
- /home/dreadserver/raid/data/:/data/
ports:
- 8096:8096
- 8920:8920 #optional
- 7359:7359/udp #optional
restart: unless-stopped