Files
system-config/sonarr/compose.yml

33 lines
749 B
YAML

services:
sonarr:
image: lscr.io/linuxserver/sonarr:4.0.16.2944-ls302
container_name: sonarr
environment:
- PUID=1000
- PGID=1000
- TZ=America/Los_Angeles
volumes:
- /mnt/storage/apps/sonarr/data:/config
- /mnt/storage/media/TV:/tv
- /mnt/storage/downloads/tv:/downloads
restart: unless-stopped
extra_hosts:
- "host.docker.internal:host-gateway"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8989/ping"]
interval: 30s
timeout: 10s
retries: 3
start_period: 30s
deploy:
resources:
limits:
memory: 1G
cpus: '1.0'
networks:
- network
networks:
network:
name: proxy
external: true