mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-03 18:36:22 +00:00
Matches bazarr_dev's BAZARR_MEDIA pattern so Radarr, Bazarr, and other *arr apps point at the same shared media library rather than a per-app data folder under VOL_PATH. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
21 lines
451 B
YAML
21 lines
451 B
YAML
services:
|
|
radarr:
|
|
image: ${RADARR_IMAGE:-ghcr.io/hotio/radarr:release}
|
|
restart: ${RADARR_RESTART:-unless-stopped}
|
|
volumes:
|
|
- ${VOL_PATH:-/data}/radarr/config:/config
|
|
- ${RADARR_MEDIA:-/data/media}:/media
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- UMASK=002
|
|
- TZ=${TZ:-America/Vancouver}
|
|
ports:
|
|
- "${RADARR_PORT:-7878}:7878"
|
|
networks:
|
|
- proxy
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|