Initial docker compose commit

This commit is contained in:
2026-02-15 14:16:44 -08:00
commit e3508e13c3
8 changed files with 171 additions and 0 deletions

17
sonarr/compose.yml Normal file
View File

@@ -0,0 +1,17 @@
services:
sonarr:
image: lscr.io/linuxserver/sonarr:latest
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
ports:
- 8989:8989
restart: unless-stopped
extra_hosts:
- "host.docker.internal:host-gateway"