mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-04 02:46:23 +00:00
added sonarr
This commit is contained in:
@@ -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.
|
||||
@@ -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
|
||||
@@ -0,0 +1,4 @@
|
||||
# Sonarr
|
||||
VOL_PATH=./data/sonarr/config
|
||||
SONARR_IMAGE=ghcr.io/hotio/sonarr:release
|
||||
TZ="America/Vancouver"
|
||||
Reference in New Issue
Block a user