sonarr VS sickchill

Compare sonarr vs sickchill and see what are their differences.

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
sonarr sickchill
9 20
72 2,377
- -0.0%
9.6 9.8
5 days ago about 23 hours ago
Python
GNU General Public License v3.0 only GNU General Public License v3.0 only
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

sonarr

Posts with mentions or reviews of sonarr. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-11-06.
  • Sonarr Docker | Problem with UID/GID
    1 project | /r/sonarr | 23 Feb 2023
    I saw the command. I feel line --user is the culprit. Haven't seen that flag before. Anyways, I'd suggest follow the official Hotio docs: https://hotio.dev/containers/sonarr/
  • Problems w/ Release on 15/02/23
    1 project | /r/sonarr | 16 Feb 2023
    I transitioned to the following image for the time being - https://hotio.dev/containers/sonarr/
  • Why do my permissions always reset.
    1 project | /r/Softwarr | 14 Nov 2022
    I use Hotio's, which is pretty much comparable.
  • What's the confusion about versions?
    4 projects | /r/sonarr | 6 Nov 2022
    So the (official?) Sonarr repo ( https://github.com/Sonarr/Sonarr/tags ) lists main version v3 as the latest there isn't even a mention of v4 at all. However, Hotio does have a v4 ( https://hotio.dev/containers/sonarr/ ) and if you spin it up it is indeed v4 in the system settings etc.
  • Too many items for Trakt List
    1 project | /r/mdblist | 13 Oct 2022
    I'm not sure, I used docker image: cr.hotio.dev/hotio/sonarr:v4 https://hotio.dev/containers/sonarr/
  • LunaSea v10.2.0: Sentry Logging, Web Notifications, & More!
    2 projects | /r/LunaSeaApp | 22 Sep 2022
    It's currently in development/pre-release, you can use the v4 tag on hotio/sonarr Docker images if you want to play around with it.
  • [DS218+] Best download solution for occasional TV shows/movies?
    5 projects | /r/synology | 23 Mar 2022
    version: "3.2" services: # Radarr - https://hotio.dev/containers/radarr/ # radarr: container_name: radarr image: ghcr.io/hotio/radarr:latest restart: unless-stopped logging: driver: json-file network_mode: bridge ports: - 7878:7878 environment: - PUID=${PUID} - PGID=${PGID} - TZ=${TZ} volumes: - /etc/localtime:/etc/localtime:ro - ${DOCKERCONFDIR}/radarr:/config - ${DOCKERSTORAGEDIR}:/data # Sonarr - https://hotio.dev/containers/sonarr/ # sonarr: container_name: sonarr image: ghcr.io/hotio/sonarr:nightly restart: unless-stopped logging: driver: json-file network_mode: bridge ports: - 8989:8989 environment: - PUID=${PUID} - PGID=${PGID} - TZ=${TZ} volumes: - /etc/localtime:/etc/localtime:ro - ${DOCKERCONFDIR}/sonarr:/config - ${DOCKERSTORAGEDIR}:/data # Bazarr - https://hotio.dev/containers/bazarr/ # bazarr: container_name: bazarr image: ghcr.io/hotio/bazarr:nightly restart: unless-stopped logging: driver: json-file network_mode: bridge ports: - 6767:6767 environment: - PUID=${PUID} - PGID=${PGID} - TZ=${TZ} volumes: - /etc/localtime:/etc/localtime:ro - ${DOCKERCONFDIR}/bazarr:/config - ${DOCKERSTORAGEDIR}/media:/data/media # Watchtower (automatic docker container updater) - https://github.com/containrrr/watchtower watchtower: container_name: watchtower image: containrrr/watchtower restart: unless-stopped logging: driver: json-file network_mode: bridge environment: - PUID=${PUID} - PGID=${PGID} - TZ=${TZ} - UMASK=022 - WATCHTOWER_CLEANUP=true - WATCHTOWER_INCLUDE_STOPPED=false - WATCHTOWER_MONITOR_ONLY=false - WATCHTOWER_SCHEDULE=0 0 4 * * * - WATCHTOWER_TIMEOUT=10s volumes: - /etc/localtime:/etc/localtime:ro - /var/run/docker.sock:/var/run/docker.sock Plex - https://hotio.dev/containers/plex/ plex: container_name: plex image: ghcr.io/hotio/plex restart: unless-stopped logging: driver: json-file network_mode: bridge ports: - 32400:32400 environment: - PUID=${PUID} - PGID=${PGID} - TZ=${TZ} - UMASK=002 - ARGS= - DEBUG=no - PLEX_CLAIM=${PLEX_CLAIM} - ADVERTISE_IP= - ALLOWED_NETWORKS= - PLEX_PASS=${PLEX_PASS} volumes: - /etc/localtime:/etc/localtime:ro - ${DOCKERCONFDIR}/plex:/config:rw - ${DOCKERSTORAGEDIR}/media:/data/media:rw - /tmp:/transcode:rw - /dev/dri:/dev/dri # Tautulli - https://hotio.dev/containers/tautulli/ # tautulli: container_name: tautulli image: ghcr.io/hotio/tautulli restart: unless-stopped logging: driver: json-file network_mode: bridge ports: - 8181:8181 environment: - PUID=${PUID} - PGID=${PGID} - TZ=${TZ} - UMASK=002 - ARGS= - DEBUG=no volumes: - /etc/localtime:/etc/localtime:ro - ${DOCKERCONFDIR}/tautulli:/config:rw # NZBGET - https://hotio.dev/containers/nzbget/ # nzbget: container_name: nzbget image: ghcr.io/hotio/nzbget:release restart: unless-stopped logging: driver: json-file network_mode: bridge ports: - 6789:6789 environment: - PUID=${PUID} - PGID=${PGID} - TZ=${TZ} - UMASK=002 volumes: - /etc/localtime:/etc/localtime:ro - ${DOCKERCONFDIR}/nzbget:/config - ${DOCKERSTORAGEDIR}:/data overseerr: container_name: overseerr image: sctx/overseerr restart: unless-stopped logging: driver: json-file network_mode: bridge ports: - 5055:5055 environment: - PUID=${PUID} - PGID=${PGID} - TZ=${TZ} - UMASK=002 volumes: - /etc/localtime:/etc/localtime:ro - ${DOCKERCONFDIR}/overseerr:/app/config
  • New Stable Release - Main - v3.0.7.1477
    1 project | /r/sonarr | 6 Mar 2022
    hotio/Sonarr:release
  • A personal Newspaper (now Dockerized)
    5 projects | /r/selfhosted | 20 Sep 2021

sickchill

Posts with mentions or reviews of sickchill. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-04-25.
  • Att piratkopiera och dra hem via torrents är based.
    3 projects | /r/sweden | 25 Apr 2023
  • Hi guys! I use SiCKRAGE, but should I switch to SickChill?
    2 projects | /r/sickchill | 21 Mar 2023
    Sickchill updates date back only 4 days. https://github.com/SickChill/sickchill
  • SickChill just inhaled my blocknews allotment!!!!
    1 project | /r/sickchill | 24 Jan 2023
  • Confessions from a Plex Convert - A (Relatively Simple Feature Set) Wishlist
    3 projects | /r/jellyfin | 25 Nov 2022
    Huh. Is that so? I guess Wikipedia is wrong. That's okay, I was told never to trust it when I was in school. Somebody may want to tell all of these different developers that their nifty software is redundant since serving is the same as managing.
  • Sickchill Stopped Working
    1 project | /r/sickchill | 14 Oct 2022
  • Sickchill enforces PIP to be used for ongoing updates
    1 project | /r/sickchill | 15 Sep 2022
    I can see i'm on Version: v2022.07.20 and i get a pop-up at the top 'There is a newer version available — Update Now'. Clicking Update Now shuts down Sickchill, does something and then brings it back up with the same version. The link for 'newer version available' takes you to https://github.com/SickChill/SickChill/compare/v2022.07.20...v2022.09.14 but it doesn't appear to install it. Once it restarts you see the same 'Update now' message appear.
  • Will not come up after latest update
    1 project | /r/sickchill | 16 Aug 2022
    someserver:/opt/sickchill$ git remote set-url origin https://github.com/SickChill/SickChill.git someserver:/opt/sickchill$ git remote set-branches --add origin master media@k2:/opt/sickchill$ git remote update Fetching origin Fetching upstream someserver:/opt/sickchill$ git fetch origin someserver:/opt/sickchill$ someserver:/opt/sickchill$ git checkout master Already on 'master' Your branch is up to date with 'upstream/master'. someserver:/opt/sickchill$ git branch --set-upstream-to origin/master Branch 'master' set up to track remote branch 'master' from 'origin'. someserver:/opt/sickchill$ git reset --hard origin/master HEAD is now at a36953882 Release version 2022.8.15 someserver:/opt/sickchill$ git pull Already up to date. someserver:/opt/sickchill$ python /opt/sickchill/SickChill.py -d Traceback (most recent call last): File "/opt/sickchill/SickChill.py", line 14, in import sickchill.start File "/opt/sickchill/sickchill/__init__.py", line 1, in from sickchill.init_helpers import maybe_daemonize, poetry_install File "/opt/sickchill/sickchill/init_helpers.py", line 24 pid_file: Path = None ^ SyntaxError: invalid syntax
  • Installing on Windows 7 - syntax error on pid_file
    1 project | /r/sickchill | 26 Oct 2021
    git remote add upstream https://github.com/SickChill/SickChill.git git fetch upstream git checkout master git branch -u upstream/master git reset --hard upstream/master git pull
  • Anyone Maintaining Sickchill?
    1 project | /r/sickchill | 23 Oct 2021
    Yes it's still active here: https://github.com/SickChill/SickChill/issues/7504
  • Norsk Netflix SUGER!
    1 project | /r/norge | 2 Sep 2021

What are some alternatives?

When comparing sonarr and sickchill you can also consider the following projects:

Medusa - Building blocks for digital commerce

Sonarr - Smart PVR for newsgroup and bittorrent users.

readarr - Docker image for Readarr.

SickGear - SickGear has proven the most reliable stable TV fork of the great Sick-Beard to fully automate TV enjoyment with innovation.

spksrc - Cross compilation framework to create native packages for the Synology's NAS

repository.dobbelina - repository.dobbelina- Kodi is a registered trademark of the XBMC Foundation.We are not connected to or in any other way affiliated with Kodi

Docker Compose - Define and run multi-container applications with Docker

SiCKRAGE - Mirror of OFFICIAL SiCKRAGE

watchtower - A process for automating Docker container base image updates.

Radarr - Movie organizer/manager for usenet and torrent users.

docker-selfoss

DuckieTV - A web application built with AngularJS to track your favorite tv-shows with semi-automagic torrent integration