refactor: rewrite radarr_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
This commit is contained in:
2026-07-02 21:31:38 -07:00
parent cd70772880
commit d2b67fcc76
4 changed files with 98 additions and 17 deletions
+20
View File
@@ -0,0 +1,20 @@
services:
radarr:
image: ${RADARR_IMAGE:-ghcr.io/hotio/radarr:release}
restart: ${RADARR_RESTART:-unless-stopped}
volumes:
- ${VOL_PATH:-/data}/radarr/config:/config
- ${VOL_PATH:-/data}/radarr/data:/data
environment:
- PUID=1000
- PGID=1000
- UMASK=002
- TZ=${TZ:-America/Vancouver}
ports:
- "${RADARR_PORT:-7878}:7878"
networks:
- proxy
networks:
proxy:
external: true