2024-02-08, 04:09 PM
(This post was last modified: 2024-02-08, 04:12 PM by ThexTallxDude. Edited 1 time in total.)
I did all that on initial setup. It was transcoding without issue for over a year. This happened only after updating the host computer, a system running OpenMediaVault6, to version 6.9.12-1. The Nvidia drivers seem to have updated during that process though, so I'm _guessing_ there may be a driver mismatch between the host and container. I deleted and grabbed a fresh jellyfin image the other day so it'd be forced to pull new everything, but the issue persists. The driver version/hw info from the nvidia-smi matches between the host and container. I may still be missing something, but hopefully the additional context helps.
Edit: here's the jellyfin part of my stack:
Edit: here's the jellyfin part of my stack:
Code:
version: "2.1"
services:
jellyfin:
image: lscr.io/linuxserver/jellyfin:latest
container_name: Jellyfin
runtime: nvidia
privileged: true
# deploy:
# resources:
# reservations:
# devices:
# - driver: nvidia
# count: all
# capabilities: [gpu]
volumes:
- /srv/dev-disk-by-uuid-6ab4066e-7303-4419-a71d-0207cf488a15/NetworkFiles/Config/JellyFin:/config
- /Media/Jelly/Movies:/Data/Movies
- /Media/Jelly/Shows:/Data/Shows
- /Media/NetworkMedia/Audio:/Data/Audio
environment:
- PUID=998
- PGID=100
- TZ=America/New_York
- NVIDIA_VISIBLE_DEVICES=all
- NVIDIA_DRIVER_CAPABILITIES=all
ports:
- 8001:8096
devices:
- /dev/dri:/dev/dri
restart: unless-stopped