Files
nick bd1fa2ab25 refactor: rewrite sonarr_dev to match template conventions
- Rename docker-compose.yml to compose.yaml
- Add defaults, restart policy, and proxy network
- Fix VOL_PATH to use base /data pattern
- Rewrite README with new section order and Getting Started guide
- Assume qBittorrent download client, Prowlarr indexer sync
2026-07-02 21:33:17 -07:00

21 lines
452 B
YAML

services:
sonarr:
image: ${SONARR_IMAGE:-ghcr.io/hotio/sonarr:release}
restart: ${SONARR_RESTART:-unless-stopped}
volumes:
- ${VOL_PATH:-/data}/sonarr/config:/config
- ${VOL_PATH:-/data}/sonarr/data:/data
environment:
- PUID=1000
- PGID=1000
- UMASK=002
- TZ=${TZ:-America/Vancouver}
ports:
- "${SONARR_PORT:-8989}:8989"
networks:
- proxy
networks:
proxy:
external: true