From 97f6aeb5389bb4413010d68fd01941983f5194e2 Mon Sep 17 00:00:00 2001 From: mr-forust Date: Thu, 27 Nov 2025 01:46:25 +0100 Subject: [PATCH] feat: basic jellyfin service --- streaming/.env.example | 1 + streaming/compose.yaml | 14 ++++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 streaming/.env.example create mode 100644 streaming/compose.yaml diff --git a/streaming/.env.example b/streaming/.env.example new file mode 100644 index 0000000..779b734 --- /dev/null +++ b/streaming/.env.example @@ -0,0 +1 @@ +TZ=Europe/Moscow \ No newline at end of file diff --git a/streaming/compose.yaml b/streaming/compose.yaml new file mode 100644 index 0000000..ca1ddc0 --- /dev/null +++ b/streaming/compose.yaml @@ -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 \ No newline at end of file