mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-03 18:36:22 +00:00
Jellyfin now mounts the same shared media library used by radarr_dev/bazarr_dev (JELLYFIN_MEDIA, default /data/media) instead of a separate jellyfin/media folder, so all *arr apps and Jellyfin see the same files. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2.1 KiB
2.1 KiB
Jellyfin
Overview
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.
Project Details
- Container Image: jellyfin/jellyfin:latest
- Reverse Proxy Port:
8096
Getting Started
- Start the container:
docker compose up -d - Open http://localhost:8096 in your browser
- Follow the initial setup wizard to configure the application
Environment Variable Notes
JELLYFIN_URL – default: http://localhost:8096
JELLYFIN_PORT – default: 8096
JELLYFIN_MEDIA – default: /data/media – shared media library, same one used by Radarr, Bazarr, etc.
Volume Notes
/cache – host path /data/jellyfin/cache
/config – host path /data/jellyfin/config
/books – host path ${JELLYFIN_MEDIA:-/data/media}/books
/movies – host path ${JELLYFIN_MEDIA:-/data/media}/movies
/music – host path ${JELLYFIN_MEDIA:-/data/media}/music
/photos – host path ${JELLYFIN_MEDIA:-/data/media}/photos
/shows – host path ${JELLYFIN_MEDIA:-/data/media}/shows
Network Notes
Requires proxy network
Docker Run
docker run -d \
--name jellyfin \
-p 8096:8096 \
-v /data/jellyfin/cache:/cache \
-v /data/jellyfin/config:/config \
-v /data/media/books:/books \
-v /data/media/movies:/movies \
-v /data/media/music:/music \
jellyfin/jellyfin:latest
See compose.yaml for the full set of environment variables.
Additional Notes / Gotchas
Nothing specific to this stack so far.
Dockhand Stack, Deploy from Git
Cookbooks Repository stackname: jellyfin_dev Compose file path: jellyfin_dev/compose.yaml Additional env file (optional): jellyfin_dev/sample.env
Then "Load" jellyfin_dev/sample.env into the Environmental variables in dockhand
Create the Stack