Files
docker-compose-cookbooks/jellyfin_dev/README.md
T
codeandClaude Sonnet 5 688ad2b464 jellyfin_dev: point at shared media library instead of its own copy
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>
2026-07-30 23:11:47 +00:00

76 lines
2.1 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 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.
## Project Details
- **Container Image:** [jellyfin/jellyfin:latest](https://hub.docker.com/r/jellyfin/jellyfin)
- **Reverse Proxy Port:** `8096`
## Getting Started
1. Start the container: `docker compose up -d`
2. Open http://localhost:8096 in your browser
3. 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
```bash
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