2025-03-09, 12:27 AM
(This post was last modified: 2025-03-09, 12:35 AM by theguymadmax. Edited 1 time in total.)
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:
services:
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.
Here's my compose file for example:
services:
Code:
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