mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-03 18:36:22 +00:00
Media is typically shared with Sonarr/Radarr/Jellyfin, so it shouldn't be nested under VOL_PATH. Also expand the config volume note.
21 lines
451 B
YAML
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
|