From 20fc1830cbc546f7986546ad8b14912631688549 Mon Sep 17 00:00:00 2001 From: jasper Date: Mon, 8 Dec 2025 15:53:59 +0100 Subject: [PATCH] Add jellyfin/compose.yaml --- jellyfin/compose.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 jellyfin/compose.yaml diff --git a/jellyfin/compose.yaml b/jellyfin/compose.yaml new file mode 100644 index 0000000..bdd38da --- /dev/null +++ b/jellyfin/compose.yaml @@ -0,0 +1,23 @@ +--- +services: + jellyfin: + image: lscr.io/linuxserver/jellyfin:latest + container_name: jellyfin + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/Amsterdam + - JELLYFIN_PublishedServerUrl=https://jellyfin.japnet.nl #optional + volumes: + - /srv/appdata/jellyfin/library:/config + - /srv/media/series:/data/tvshows + - /srv/media/movies:/data/movies + - /srv/media/music:/data/music + devices: + - /dev/dri:/dev/dri # <-- belangrijkste stap + ports: + - 8096:8096 + - 8920:8920 #optional + - 7359:7359/udp #optional + - 1900:1900/udp #optional + restart: unless-stopped \ No newline at end of file