2025-04-01, 01:22 PM
(This post was last modified: 2025-04-01, 01:28 PM by zypthora. Edited 2 times in total.)
Hi, thank you for your answer. I changed the docker compose file to the following:
This does not seem to work, same FFMPEG errors
EDIT I see that I made a typo in the new docker compose: I had /dev/dri:/dev/tri instead of /dev/dri:/dev/dri. Thanks for the help!
Code:
services:
jellyfin:
image: jellyfin/jellyfin
container_name: jellyfin
user: 1026:100
network_mode: 'host'
volumes:
- /volume1/docker/jellyfin/cache:/cache
- /volume1/docker/jellyfin/config:/config
- type: bind
source: /volume1/Media/Films
target: /movies
- type: bind
source: /volume1/Media/Series
target: /shows
devices:
- /dev/dri:/dev/tri
restart: 'unless-stopped'
# Optional - alternative address used for autodiscovery
environment:
- JELLYFIN_PublishedServerUrl=192.168.0.2
This does not seem to work, same FFMPEG errors
EDIT I see that I made a typo in the new docker compose: I had /dev/dri:/dev/tri instead of /dev/dri:/dev/dri. Thanks for the help!