2025-01-19, 12:23 PM
Hi @theguymadmax
Thank you for your reply!
I am not sure about the permissions, as the container was executed by root. But I did what you asked. Added the
For the sake of completness it looks like this now:
I also reverted the log level back to default. Please find a pastebin here: https://pastebin.com/yn65Zdrq
So, what I did was restart jellyfin (so the new logging config was loaded), played "Mission - Impossible" and stopped after a couple of seconds, and played another TV show where I know which is not working. That playback added the very last line (#63) in the log. Only one FFMpeg log file is created for the successful playback, nothing for the bad one.
Thank you for your help :-)
Thank you for your reply!
I am not sure about the permissions, as the container was executed by root. But I did what you asked. Added the
group_add
with "106" (thats my render
group), added user 1000 to group 106, chown'd the jellyfin config and cache folders to 1000:1000 and added the user: 1000:1000
to the compose. With no success I am afraid.For the sake of completness it looks like this now:
Code:
services:
jellyfin2:
image: jellyfin/jellyfin:latest
container_name: jellyfin2
restart: unless-stopped
user: 1000:1000
group_add:
- 106
devices:
- /dev/dri/renderD128:/dev/dri/renderD128
- /dev/dri/card0:/dev/dri/card0
environment:
- TZ=Europe/Vienna
volumes:
- /data/container/jellyfin2-config:/config
- /data/container/jellyfin2-cache:/cache
- /mnt/Media:/data/Media:ro
ports:
- 8097:8096
I also reverted the log level back to default. Please find a pastebin here: https://pastebin.com/yn65Zdrq
So, what I did was restart jellyfin (so the new logging config was loaded), played "Mission - Impossible" and stopped after a couple of seconds, and played another TV show where I know which is not working. That playback added the very last line (#63) in the log. Only one FFMpeg log file is created for the successful playback, nothing for the bad one.
Thank you for your help :-)