mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-03 18:36:22 +00:00
- Add lidarr_dev stack with compose.yaml, sample.env, and README - Rewrite prowlarr_dev to match template conventions (compose.yaml, defaults on all vars, proxy network, README sections) - Set default VOL_PATH to /data (absolute, never ./data) - Reorder README sections: Overview → Project Details → Getting Started → Env Vars → Volume Notes → Network Notes → Docker Run - Update template-readme.md and AGENTS.md with new conventions
21 lines
452 B
YAML
21 lines
452 B
YAML
services:
|
|
lidarr:
|
|
image: ${LIDARR_IMAGE:-ghcr.io/hotio/lidarr:release}
|
|
restart: ${LIDARR_RESTART:-unless-stopped}
|
|
volumes:
|
|
- ${VOL_PATH:-/data}/lidarr/config:/config
|
|
- ${VOL_PATH:-/data}/lidarr/data:/data
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- UMASK=002
|
|
- TZ=${TZ:-America/Vancouver}
|
|
ports:
|
|
- "${LIDARR_PORT:-8686}:8686"
|
|
networks:
|
|
- proxy
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|