From 30c22ce0933ee8fcf10197cb798bb982f32228b1 Mon Sep 17 00:00:00 2001 From: Borgal Date: Sun, 17 Nov 2024 21:03:58 +0000 Subject: [PATCH] =?UTF-8?q?jellyfin/initial=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jellyfin/.env.sample | 5 +++++ jellyfin/docker-compose.yml | 28 ++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 jellyfin/.env.sample create mode 100644 jellyfin/docker-compose.yml diff --git a/jellyfin/.env.sample b/jellyfin/.env.sample new file mode 100644 index 0000000..029af7a --- /dev/null +++ b/jellyfin/.env.sample @@ -0,0 +1,5 @@ +NFS_SERVER=192.168.0.xxx +PFAD=/Pfad/zu/den/Videos +# +# Auf Rechte achten +# \ No newline at end of file diff --git a/jellyfin/docker-compose.yml b/jellyfin/docker-compose.yml new file mode 100644 index 0000000..6831ff9 --- /dev/null +++ b/jellyfin/docker-compose.yml @@ -0,0 +1,28 @@ +services: + jellyfin: + image: lscr.io/linuxserver/jellyfin:latest + container_name: jellyfin + environment: + - PUID=1000 + - PGID=1001 + - TZ=Europe/Berlin + #- JELLYFIN_PublishedServerUrl=http://192.168.0.5 #optional + volumes: + - ./config:/config + #- /path/to/tvseries:/data/tvshows + - video:/data/movies + ports: + - 8097:8096 + #- 8920:8920 #optional + #- 7359:7359/udp #optional + #- 1900:1900/udp #optional + restart: unless-stopped + +volumes: + video: + name: video + driver: local + driver_opts: + type: nfs4 + o: addr=${NFS_SERVER},rw + device: ":${PFAD}"