refactored all to dev

This commit is contained in:
2025-11-26 21:48:53 -08:00
parent a8066686bc
commit f8ca733307
170 changed files with 12 additions and 29 deletions
+13
View File
@@ -0,0 +1,13 @@
# Jellyfin
## Overview
* [DockerHub jellyfin](https://hub.docker.com/r/jellyfin/jellyfin)
* [Docs](https://jellyfin.org/docs/)
### Ports
* 8096/tcp is used by default for HTTP traffic. You can change this in the dashboard.
* 8920/tcp is used by default for HTTPS traffic. You can change this in the dashboard.
* 1900/udp is used for service auto-discovery. This is not configurable.
* 7359/udp is also used for auto-discovery. This is not configurable.
+16
View File
@@ -0,0 +1,16 @@
services:
jellyfin:
image: ${JELLYFIN_IMAGE:-jellyfin/jellyfin:latest}
restart: unless-stopped
environment:
- JELLYFIN_PublishedServerUrl=${JELLYFIN_PublishedServerUrl:-http://localhost:8096}
volumes:
- ${VOL_PATH:-./data}/jellyfin-cache:/cache
- ${VOL_PATH:-./data}/jellyfin-config:/config
- ${VOL_PATH:-./data}/jellyfin-content/books:/books
- ${VOL_PATH:-./data}/jellyfin-content/media:/media
- ${VOL_PATH:-./data}/jellyfin-content/movies:/movies
- ${VOL_PATH:-./data}/jellyfin-content/music:/music
- ${VOL_PATH:-./data}/jellyfin-content/musicvideos:/musicvideos
- ${VOL_PATH:-./data}/jellyfin-content/photos:/photos
- ${VOL_PATH:-./data}/jellyfin-content/shows:/shows
+7
View File
@@ -0,0 +1,7 @@
# Global
VOL_PATH=./data
COOKBOOK=/git/docker-compose-cookbooks #HELP: cookbooks
# Jellyfin
JELLYFIN_IMAGE=jellyfin/jellyfin:latest
JELLYFIN_PublishedServerUrl=http://localhost:8096