jellyfin

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Nächste Überarbeitung
Vorhergehende Überarbeitung
jellyfin [2021/12/09 08:40] – angelegt Fabian Horstjellyfin [2022/12/27 20:15] (aktuell) Fabian Horst
Zeile 1: Zeile 1:
 ====== Jellyfin Docker ====== ====== Jellyfin Docker ======
  
-https://ashu.io/blog/media-server-lxc-proxmox/ +  * https://ashu.io/blog/media-server-lxc-proxmox/ 
-https://blog.konpat.me/dev/2019/03/11/setting-up-lxc-for-intel-gpu-proxmox.html +  https://blog.konpat.me/dev/2019/03/11/setting-up-lxc-for-intel-gpu-proxmox.html 
-https://ashu.io/blog/docker-proxmox/+  https://ashu.io/blog/docker-proxmox/ 
 +  * https://blog.peterge.de/jellyfin/ 
 +  * https://hub.docker.com/r/linuxserver/jellyfin 
 + 
 + 
 +ACHTUNG: Jellyfin Nutzer MUSS natürlich auch das HW Beschleunigungsinterface nutzen dürfen! 
 +<code>chmod 777 /dev/dri/*</code> 
 + 
 +https://github.com/jellyfin/jellyfin/issues/8217 
 + 
 +<code> 
 +version: "2.1" 
 +services: 
 +  jellyfin: 
 +    image: lscr.io/linuxserver/jellyfin 
 +    container_name: jellyfin 
 +    environment: 
 +      - PUID=1000 
 +      - PGID=1000 
 +      - TZ=Europe/Berlin 
 +      - JELLYFIN_PublishedServerUrl=jellyfin 
 +    volumes: 
 +      - /docker/jellyfin/config:/config 
 +      - /docker/jellyfin/data:/data 
 +    ports: 
 +      - 8096:8096 
 +      - 8920:8920 #optional 
 +      - 7359:7359/udp #optional 
 +      - 1900:1900/udp #optional 
 +    devices: 
 +      - /dev/dri:/dev/dri #optional 
 +    restart: unless-stopped 
 +</code> 
 + 
 +Jellyfin Bare hardware 
 +https://jellyfin.org/docs/general/administration/hardware-acceleration.html 
 +https://github.com/keylase/nvidia-patch 
 +https://developer.nvidia.com/video-encode-and-decode-gpu-support-matrix-new 
 + 
 + 
 +Ordneraufbau: 
 +https://jellyfin.org/docs/general/server/media/movies.html
  • jellyfin.1639035603.txt.gz
  • Zuletzt geändert: 2021/12/09 08:40
  • von Fabian Horst