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>
This commit is contained in:
code
2026-07-30 23:11:47 +00:00
co-authored by Claude Sonnet 5
parent b9c1619147
commit 688ad2b464
3 changed files with 15 additions and 13 deletions
+5 -5
View File
@@ -5,11 +5,11 @@ services:
volumes:
- ${VOL_PATH:-/data}/jellyfin/cache:/cache
- ${VOL_PATH:-/data}/jellyfin/config:/config
- ${VOL_PATH:-/data}/jellyfin/media/books:/books
- ${VOL_PATH:-/data}/jellyfin/media/movies:/movies
- ${VOL_PATH:-/data}/jellyfin/media/music:/music
- ${VOL_PATH:-/data}/jellyfin/media/photos:/photos
- ${VOL_PATH:-/data}/jellyfin/media/shows:/shows
- ${JELLYFIN_MEDIA:-/data/media}/books:/books
- ${JELLYFIN_MEDIA:-/data/media}/movies:/movies
- ${JELLYFIN_MEDIA:-/data/media}/music:/music
- ${JELLYFIN_MEDIA:-/data/media}/photos:/photos
- ${JELLYFIN_MEDIA:-/data/media}/shows:/shows
environment:
- JELLYFIN_PublishedServerUrl=${JELLYFIN_URL:-http://localhost:8096}
ports: