added sonarr

This commit is contained in:
2025-09-03 13:36:04 -07:00
parent 722029112a
commit db7f6a9213
3 changed files with 24 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
# Sonarr
Official site: https://sonarr.tv/
Proxy port: 8989
composer example: https://hotio.dev/containers/sonarr/#__tabbed_1_2
Sonarr is a PVR (Personal Video Recorder) designed to automatically find, download, and manage your TV series collection. It monitors your favorite shows for new episodes and, once they are posted to your indexers, grabs them and sends them to your download client. After the download completes, Sonarr automatically renames the episode files to a clean and consistent format, sorts them into the appropriate series and season folders within your media library, and updates your media server (like Plex, Jellyfin, or Emby). It's also capable of searching for missing past episodes and automatically upgrading existing files to a higher quality when they become available, ensuring your collection is always complete and up-to-date.
+13
View File
@@ -0,0 +1,13 @@
services:
sonarr:
image: ${SONARR_IMAGE}
ports:
- "8989:8989"
environment:
- PUID=1000
- PGID=1000
- UMASK=002
- TZ=${TZ}
volumes:
- ${VOL_PATH}/sonarr/config:/config
- ${VOL_PATH}/sonarr/data:/data
+4
View File
@@ -0,0 +1,4 @@
# Sonarr
VOL_PATH=./data/sonarr/config
SONARR_IMAGE=ghcr.io/hotio/sonarr:release
TZ="America/Vancouver"