feat: basic jellyfin service

This commit is contained in:
2025-11-27 01:46:25 +01:00
parent 258ed04f98
commit 97f6aeb538
2 changed files with 15 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
TZ=Europe/Moscow
+14
View File
@@ -0,0 +1,14 @@
services:
jellyfin:
image: lscr.io/linuxserver/jellyfin:latest
container_name: jellyfin
environment:
- PUID=1000
- PGID=1000
- TZ=${TZ}
volumes:
- ./jellyfin/config:/config
- ./jellyfin/media:/data/media
networks:
- proxy
restart: unless-stopped