- Add 11 new stack compose files from syn01 and syn02 - syn01 stacks: postgres01, paperless-ngx, minio, beszel-hub, gitea, adguard - syn02 stacks: radarr, lidarr, sabnzbd, sonarr, arr-cleanup - Update resources.toml with all new stack definitions - Remove embedded file_contents from prowlarr stack - Use environment variables for sensitive data (passwords, API keys) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
19 lines
432 B
YAML
19 lines
432 B
YAML
services:
|
|
lidarr:
|
|
image: ghcr.io/linuxserver/lidarr:latest
|
|
container_name: LIDARR
|
|
healthcheck:
|
|
test: curl -f http://localhost:8686/ || exit 1
|
|
restart: on-failure:5
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
volumes:
|
|
- /volume2/data:/data:rw
|
|
- /volume2/docker/lidarr:/config:rw
|
|
environment:
|
|
TZ: America/Los_Angeles
|
|
PGID: 100
|
|
PUID: 1026
|
|
ports:
|
|
- 8686:8686
|