- 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:
|
|
sonarr:
|
|
image: ghcr.io/linuxserver/sonarr:latest
|
|
container_name: SONARR
|
|
healthcheck:
|
|
test: curl -f http://localhost:8989/ || exit 1
|
|
restart: on-failure:5
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
volumes:
|
|
- /volume2/data:/data:rw
|
|
- /volume2/docker/sonarr:/config:rw
|
|
environment:
|
|
TZ: America/Los_Angeles
|
|
PGID: 100
|
|
PUID: 1026
|
|
ports:
|
|
- 8989:8989
|