mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-04 02:46:23 +00:00
feat: add readarr, whisparr, and bazarr stacks
- Add readarr_dev (eBook/audiobook collection manager, port 8787) - Add whisparr_dev (adult content manager, port 6969) - Add bazarr_dev (subtitle management companion, port 6767) - Bazarr uses a shared /media volume for writing subtitles - All stacks follow template conventions (defaults, proxy network, VOL_PATH=/data, README section order)
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
services:
|
||||
whisparr:
|
||||
image: ${WHISPARR_IMAGE:-ghcr.io/hotio/whisparr:release}
|
||||
restart: ${WHISPARR_RESTART:-unless-stopped}
|
||||
volumes:
|
||||
- ${VOL_PATH:-/data}/whisparr/config:/config
|
||||
- ${VOL_PATH:-/data}/whisparr/data:/data
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- UMASK=002
|
||||
- TZ=${TZ:-America/Vancouver}
|
||||
ports:
|
||||
- "${WHISPARR_PORT:-6969}:6969"
|
||||
networks:
|
||||
- proxy
|
||||
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
||||
Reference in New Issue
Block a user