2025-03-09, 02:33 PM
(This post was last modified: 2025-03-09, 04:27 PM by theguymadmax. Edited 1 time in total.)
(2025-03-09, 12:27 AM)theguymadmax Wrote: You need to pass you GPU you into the container. See here: https://jellyfin.org/docs/general/admini...ualization
Here's my compose file for example:
Code:services:
jellyfin:
image: jellyfin/jellyfin:latest
container_name: jellyfin
user: 1000:1000
group_add:
- "44" #video
- "992" #render
network_mode: 'host'
volumes:
- /home/max/Dockers/Jellyfin/Config:/config
- /home/max/Dockers/Jellyfin/Cache:/cache
- /media/Movies:/Movies
- /media/TV:/TV
restart: 'unless-stopped'
devices:
- /dev/dri/renderD128:/dev/dri/renderD128
You'll also need to add the Intel OpenCLDocker mod for Jellyfin into the environment variables of your compose file since your using LSIO Docker image.
Code:DOCKER_MODS=linuxserver/mods:jellyfin-opencl-intel
Thank you so much.