Hi all,
I would like to use HW acceleration in a docker container through compose. The computer is an intel 11th gen and should able to do so, but it doesn't work. Here you have my compose file. I've tried lots of things with no luck. Could you help me, please?
Code
---
# https://hub.docker.com/r/linuxserver/jellyfin
services:
jellyfin:
image: lscr.io/linuxserver/jellyfin:latest
container_name: jellyfin
group_add:
- 107 # video, for /dev/dri devices
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
- JELLYFIN_PublishedServerUrl=192.168.0.5 #optional
- LIBVA_DRIVERS_PATH=/usr/lib/x86_64-linux-gnu/dri
volumes:
- CHANGE_TO_COMPOSE_DATA_PATH/jellyfin/library:/config
- /datos_no_replicados/downloads/series:/series
- /datos_no_replicados/downloads/pelis:/pelis
ports:
- 8096:8096
- 8920:8920 #optional
- 7359:7359/udp #optional
- 1900:1900/udp #optional
devices:
- /dev/dri/renderD128:/dev/dri/renderD128
- /dev/dri/card0:/dev/dri/card0
restart: unless-stopped
Display More