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>
25 lines
740 B
YAML
25 lines
740 B
YAML
services:
|
|
jellyfin:
|
|
image: ${JELLYFIN_IMAGE:-jellyfin/jellyfin:latest}
|
|
restart: ${JELLYFIN_RESTART:-unless-stopped}
|
|
volumes:
|
|
- ${VOL_PATH:-/data}/jellyfin/cache:/cache
|
|
- ${VOL_PATH:-/data}/jellyfin/config:/config
|
|
- ${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:
|
|
- "${JELLYFIN_PORT:-8096}:8096"
|
|
networks:
|
|
- proxy
|
|
- internal
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|
|
internal:
|