# Deprecated This repository is now deprecated, will no longer be updated and is being archived. Scripts/Project has moved to: https://github.com/RandomNinjaAtk/arr-scripts # [RandomNinjaAtk/sonarr-extended](https://github.com/RandomNinjaAtk/docker-sonarr-extended)
### What is Sonarr Extended: * Linuxserver.io Sonarr docker container (develop tag) * Additional packages and scripts added to the container to provide additional functionality Sonarr itself is not modified in any way, all changes that are pushed to Sonarr via public Sonarr API's. This is strictly Sonarr Develop branch For more details, visit the [Wiki](https://github.com/RandomNinjaAtk/docker-sonarr-extended/wiki) This containers base image is provided by: [linuxserver/sonarr](https://github.com/linuxserver/docker-sonarr) ### All Arr-Extended Apps: * [sabnzbd-extended](https://github.com/RandomNinjaAtk/docker-sabnzbd-extended) * [lidarr-extended](https://github.com/RandomNinjaAtk/docker-lidarr-extended) * [radarr-extended](https://github.com/RandomNinjaAtk/docker-radarr-extended) * [sonarr-extended](https://github.com/RandomNinjaAtk/docker-sonarr-extended) * [readarr-extended](https://github.com/RandomNinjaAtk/docker-readarr-extended) ## Features * [Downloading TV **Trailers** and **Extras** using online sources for use in popular applications (Plex):](https://github.com/RandomNinjaAtk/docker-sonarr-extended/wiki/Extras.bash) * Connects to Sonarr to automatically download trailers for TV Series in your existing library * Downloads videos using yt-dlp automatically * Names videos correctly to match Plex naming convention * [Auto Configure Sonarr with optimized settings](https://github.com/RandomNinjaAtk/docker-sonarr-extended/wiki/AutoConfig.bash) * Optimized file/folder naming (based on trash guides) * Configures media management settings * Configures metadata settings * [Daily Series Episode Trimmer](https://github.com/RandomNinjaAtk/docker-sonarr-extended/wiki/DailySeriesEpisodeTrimmer.bash) * Keep only the latest 14 episodes of a daily series * [Recyclarr built-in](https://github.com/RandomNinjaAtk/docker-sonarr-extended/wiki/Recyclarr.bash) * Auto configures Release Profiles + Scores * Auto configures optimzed quality definitions * [Plex Notify Script](https://github.com/RandomNinjaAtk/docker-sonarr-extended/wiki/PlexNotify.bash) * Reduce Plex scanning by notifying Plex the exact folder to scan * [Queue Cleaner Script](https://github.com/RandomNinjaAtk/docker-sonarr-extended/wiki/QueueCleaner.bash) * Automatically removes downloads that have a "warning" or "failed" status that will not auto-import into Sonarr, which enables Sonarr to automatically re-search for the Title * [Youtube Series Downloader Script](https://github.com/RandomNinjaAtk/docker-sonarr-extended/wiki/Youtube-Series-Downloader.bash) * Automatically downloads and imports episodes from Youtube.com for Sonarr series that have their network set as "Youtube" ### Plex Example ![](https://raw.githubusercontent.com/RandomNinjaAtk/docker-amtd/master/.github/amvtd-plex-example.jpg) ## Supported Architectures The architectures supported by this image are: | Architecture | Available | Tag | | :----: | :----: | ---- | | multi | ✅ | latest | | x86-64 | ✅ | amd64 | | arm64v8 | ✅ | arm64v8 | ## Version Tags | Tag | Description | | :----: | --- | | latest | Sonarr Develop + Extended Scripts| ## Parameters Container images are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate `:` respectively. For example, `-p 8080:80` would expose port `80` from inside the container to be accessible from the host's IP on port `8080` outside the container. | Parameter | Function | | :----: | --- | | `-p 8989` | The port for the Sonarr webinterface | | `-v /config` | Database and sonarr configs | | `-v /storage` | Location of TV and Downloads Library | | `-e enableAutoConfig=true` | true = enabled :: Enables AutoConfig script to run after startup | | `-e enableRecyclarr=true` | true = enabled :: Enables Recyclarr to run every 4 hours | | `-e enableQueueCleaner=true` | true = enabled :: Enables QueueCleaner Script that automatically removes stuck downloads that cannot be automatically imported on a 15 minute interval | | `-e enableYoutubeSeriesDownloader=true` | true = enabled :: Enables Youtube-Series-Downloadder script to run every hour | | `-e enableExtras=true` | true = enabled :: Enables Extras script to run during download import process | | `-e extrasType=all` | all or trailers :: all downloads all available videos (trailers, clips, featurette, etc...) :: trailers only downloads trailers | | `-e extrasLanguages=en-US,it-IT` | Set the desired language for Extras, all languages will be processed... (this is a "," separated list of TMDB language codes, get the code from there sites language opitons, example: en-US) | | `-e extrasOfficialOnly=false` | true = enabled :: Skips extras that are not considered/marked as Official from TMDB site. | | `-e plexUrl=http://x.x.x.x:32400` | ONLY used if PlexNotify.bash is used... | | `-e plexToken=Token_Goes_Here` | ONLY used if PlexNotify.bash is used... | | `-e videoFormat="bestvideo*+bestaudio/best"` | OPTIONAL - yt-dlp video selection paramater, do not change unless you know what your doing.... | | `-e maximumDailyEpisodes=14` | OPTIONAL - Adjust the maximum number of daily series episodes to keep when using the Daily Episode Trimmer Script... | | `-e PUID=1000` | for UserID - see below for explanation | | `-e PGID=1000` | for GroupID - see below for explanation | | `-e TZ=Europe/London` | Specify a timezone to use EG Europe/London, this is required for Sonarr | | `-e UMASK_SET=022` | control permissions of files and directories created by Sonarr | ## Application Setup Access the webui at `:8989`, for more information check out [Sonarr](https://sonarr.tv/). ## Docker Examples: These examples are untested, but should work or at least give you a good starting point.... ### docker ``` docker create \ --name=sonarr-extended \ -v /path/to/config/files:/config \ -p 8989:8989 \ -e TZ=America/New_York \ -e PUID=1000 \ -e PGID=1000 \ -e enableAutoConfig=true \ -e enableRecyclarr=true \ -e enableQueueCleaner=true \ -e enableYoutubeSeriesDownloader=true \ -e enableExtras=true \ -e extrasType=all \ -e extrasLanguages=en-US,it-IT \ -e extrasOfficialOnly=false \ -e plexUrl=http://x.x.x.x:32400 \ -e plexToken=Token_Goes_Here \ randomninjaatk/sonarr-extended:latest ``` ### docker-compose Compatible with docker-compose v2 schemas. ``` version: "2.1" services: sonarr-extended: image: randomninjaatk/sonarr-extended:latest container_name: sonarr-extended volumes: - /path/to/config/files:/config environment: - TZ=America/New_York - PUID=1000 - PGID=1000 - enableAutoConfig=true - enableRecyclarr=true - enableQueueCleaner=true - enableYoutubeSeriesDownloader=true - enableExtras=true - extrasType=all - extrasLanguages=en-US,it-IT - extrasOfficialOnly=false - plexUrl=http://x.x.x.x:32400 - plexToken=Token_Goes_Here ports: - 8989:8989 restart: unless-stopped ``` # Credits - [ffmpeg](https://ffmpeg.org/) - [yt-dlp](https://github.com/yt-dlp/yt-dlp) - [linuxserver/sonarr](https://github.com/linuxserver/docker-sonarr) Base docker image - [Sonarr](https://sonarr.tv/) - [The Movie Database](https://www.themoviedb.org/) - [Recyclarr](https://github.com/recyclarr/recyclarr) - Icons made by Freepik from www.flaticon.com