Files
code 8c025e9be4 bazarr_dev: give shared media library its own BAZARR_MEDIA var
Media is typically shared with Sonarr/Radarr/Jellyfin, so it shouldn't
be nested under VOL_PATH. Also expand the config volume note.
2026-07-30 21:17:18 +00:00

21 lines
451 B
YAML

services:
bazarr:
image: ${BAZARR_IMAGE:-ghcr.io/hotio/bazarr:release}
restart: ${BAZARR_RESTART:-unless-stopped}
volumes:
- ${VOL_PATH:-/data}/bazarr/config:/config
- ${BAZARR_MEDIA:-/data/media}:/media
environment:
- PUID=1000
- PGID=1000
- UMASK=002
- TZ=${TZ:-America/Vancouver}
ports:
- "${BAZARR_PORT:-6767}:6767"
networks:
- proxy
networks:
proxy:
external: true