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