jellyfin/initial hinzugefügt
This commit is contained in:
5
jellyfin/.env.sample
Normal file
5
jellyfin/.env.sample
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
NFS_SERVER=192.168.0.xxx
|
||||||
|
PFAD=/Pfad/zu/den/Videos
|
||||||
|
#
|
||||||
|
# Auf Rechte achten
|
||||||
|
#
|
||||||
28
jellyfin/docker-compose.yml
Normal file
28
jellyfin/docker-compose.yml
Normal file
@@ -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}"
|
||||||
Reference in New Issue
Block a user