Hi all,
I had my Jellyfin setup up and running well, utilising my P2000 to transcode when needed.
I installed KVM and then noticed that my docker container for Jellyfin will no longer start.
This is my compose:
Code
---
version: "2.1"
services:
jellyfin:
image: lscr.io/linuxserver/jellyfin:latest
container_name: jellyfin
environment:
- PUID=1000
- PGID=100
- TZ=Europe/London
- JELLYFIN_PublishedServerUrl=10.0.0.10
- NVIDIA_VISIBLE_DEVICES=all
volumes:
- /appdata/jellyfin:/config
- /srv/mergerfs/data/media:/media
- /transcoding:/transcoding
ports:
- 8096:8096
restart: unless-stopped
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: 1
capabilities: [gpu]
Display More
This was working well, and I followed the guide to get my NVIDIA drivers installed fine.
But like I say since I installed KVM it no longer starts, this is the error from Portainer:
Code
failed to deploy a stack: Network jellyfin_default Creating Network jellyfin_default Created Container jellyfin Creating Container jellyfin Created Container jellyfin Starting Error response from daemon: failed to create task for container: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: error during container init: error running hook #0: error running hook: exit status 1, stdout: , stderr: Auto-detected mode as 'legacy' nvidia-container-cli: initialization error: nvml error: driver not loaded: unknown
I'm not sure if the KVM is a red-herring or not as I didnt notice JF being down right away, it was a few days later.
Or an update that may have run.
Also not sure if just a good ol fashioned reboot of OMV would solve this or not?
I did restart docker and this did not help.