{"id":21171209,"url":"https://github.com/ahuh/docker-arm-sickchill","last_synced_at":"2026-05-21T04:03:29.775Z","repository":{"id":87092114,"uuid":"155110038","full_name":"ahuh/docker-arm-sickchill","owner":"ahuh","description":"Docker image (ARMv7) hosting a SickChill server with WebUI ","archived":false,"fork":false,"pushed_at":"2022-08-16T19:50:45.000Z","size":134,"stargazers_count":1,"open_issues_count":2,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-21T10:51:07.491Z","etag":null,"topics":["arm","docker","dockerfile","series","sickchill","tvshows"],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ahuh.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-10-28T19:58:33.000Z","updated_at":"2021-07-11T11:13:14.000Z","dependencies_parsed_at":"2023-03-12T17:01:31.596Z","dependency_job_id":null,"html_url":"https://github.com/ahuh/docker-arm-sickchill","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahuh%2Fdocker-arm-sickchill","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahuh%2Fdocker-arm-sickchill/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahuh%2Fdocker-arm-sickchill/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahuh%2Fdocker-arm-sickchill/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ahuh","download_url":"https://codeload.github.com/ahuh/docker-arm-sickchill/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243617089,"owners_count":20320007,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["arm","docker","dockerfile","series","sickchill","tvshows"],"created_at":"2024-11-20T16:03:26.064Z","updated_at":"2026-05-21T04:03:24.737Z","avatar_url":"https://github.com/ahuh.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Docker ARM SickChill\nDocker image dedicated to ARMv7 processors, hosting a SickChill server with WebUI.\u003cbr /\u003e\n\u003cbr /\u003e\nThis project is based on existing projects, combined and modified to work on ARMv7 WD My Cloud EX2 Ultra NAS.\u003cbr /\u003e\nSee GitHub repositories:\n* https://github.com/edv/docker-sickrage\n* https://github.com/haugene/docker-transmission-openvpn\n\u003cbr /\u003e\nThis image is part of a Docker images collection, intended to build a full-featured seedbox, and compatible with WD My Cloud EX2 Ultra NAS (Docker v1.7.0):\n\nDocker Image | GitHub repository | Docker Hub repository\n------------ | ----------------- | -----------------\nDocker image (ARMv7) hosting a Transmission torrent client with WebUI while connecting to OpenVPN | https://github.com/ahuh/docker-arm-transquidvpn | https://hub.docker.com/r/ahuh/arm-transquidvpn\nDocker image (ARMv7) hosting a qBittorrent client with WebUI while connecting to OpenVPN | https://github.com/ahuh/docker-arm-qbittorrentvpn | https://hub.docker.com/r/ahuh/arm-qbittorrentvpn\nDocker image (ARMv7) hosting SubZero with MKVMerge (subtitle autodownloader for TV shows) | https://github.com/ahuh/docker-arm-subzero | https://hub.docker.com/r/ahuh/arm-subzero\nDocker image (ARMv7) hosting a SickChill server with WebUI | https://github.com/ahuh/docker-arm-sickchill | https://hub.docker.com/r/ahuh/arm-sickchill\nDocker image (ARMv7) hosting a Medusa server with WebUI | https://github.com/ahuh/docker-arm-medusa | https://hub.docker.com/r/ahuh/arm-medusa\nDocker image (ARMv7) hosting a Jackett server with WebUI | https://github.com/ahuh/docker-arm-jackett | https://hub.docker.com/r/ahuh/arm-jackett\nDocker image (ARMv7) hosting a NGINX server to secure SickChill, Transmission and qBittorrent | https://github.com/ahuh/docker-arm-nginx | https://hub.docker.com/r/ahuh/arm-nginx\n\n## Installation\n\n### Preparation\nBefore running container, you have to retrieve UID and GID for the user used to mount your tv shows directory:\n* Get user UID:\n```\n$ id -u \u003cuser\u003e\n```\n* Get user GID:\n```\n$ id -g \u003cuser\u003e\n```\nThe container will run impersonated as this user, in order to have read/write access to the tv shows directory.\n\n### Run container in background\n```\n$ docker run --name sickchill --restart=always  \\\n\t\t--add-host=dockerhost:\u003cdocker host IP\u003e \\\n\t\t--dns=\u003cip of dns #1\u003e --dns=\u003cip of dns #2\u003e \\\n\t\t-d \\\n\t\t-p \u003cwebui port\u003e:8081 \\\n\t\t-v \u003cpath to SickChill configuration dir\u003e:/config \\\n\t\t-v \u003cpath to SickChill data dir\u003e:/data \\\n\t\t-v \u003cpath to tv shows dir\u003e:/tvshowsdir \\\n\t\t-v \u003cpath to downloaded files to process\u003e:/postprocessingdir \\\n\t\t-v /etc/localtime:/etc/localtime:ro \\\n\t\t-e \"AUTO_UPDATE=\u003cauto update SickChill at first start [true/false]\u003e\"\n\t\t-e \"TORRENT_MODE=\u003ctransmission or qbittorrent\u003e\" \\\n\t\t-e \"TORRENT_PORT=\u003cport of the torrent client\u003e\" \\\n\t\t-e \"TORRENT_LABEL=\u003clabel to use for SickChill in torrent client\u003e\" \\\n\t\t-e \"PROXY_PORT=\u003csquid3 proxy port to use (leave empty to disable)\u003e\" \\\n\t\t-e \"PUID=\u003cuser uid\u003e\" \\\n\t\t-e \"PGID=\u003cuser gid\u003e\" \\\n\t\tahuh/arm-sickchill\n```\nor\n```\n$ ./docker-run.sh sickchill ahuh/arm-sickchill\n```\n(set parameters in `docker-run.sh` before launch)\n\n### Configure SickChill\nThe container will use volumes directories to manage tv shows files, to retrieve downloaded files, and to store data and configuration files.\u003cbr /\u003e\n\u003cbr /\u003e\nYou have to create these volume directories with the PUID/PGID user permissions, before launching the container:\n```\n/tvshowsdir\n/postprocessingdir\n/config\n/data\n```\n\nThe container will automatically create a `config.ini` file in the SickChill configuration dir (only if none was present before).\u003cbr /\u003e\n* The following parameters will be automatically modified at launch for compatibility with the Docker container:\n```\n[General]\n...\nroot_dirs = 0|/tvshowsdir\ntv_download_dir = /postprocessingdir\nunrar_tool = unrar\n```\n* Depending on the torrent client Docker container selected (transmission or qbittorrent), these parameters will be automatically modified at launch:\n```\n[General]\n...\nuse_torrents = 1\ntorrent_method = ${TORRENT_MODE}\nprocess_automatically = 1\nhandle_reverse_proxy = 1\n...\n[TORRENT]\n...\ntorrent_auth_type = none\ntorrent_host = http://torrent:${TORRENT_PORT}/\ntorrent_path = /downloaddir/${TORRENT_LABEL}\n```\n* If a `PROXY_PORT` var is specified, the squid3 hosted on the Docker ARM TranSquidVpn container will be used for searches and indexers in SickChill. These parameters will be automatically modified at launch:\n```\n[General]\n...\nproxy_setting = http://dockerhost:${PROXY_PORT}\nproxy_indexers = 1\n```\n* If you use qBittorrent as torrent client, you have to access the search settings in SickChill WebUI, and input the username / password for authentication.\n\nIf you modified the `config.ini` file, restart the container to reload SickChill configuration:\n```\n$ docker stop sickchill\n$ docker start sickchill\n```\n* At the first start of the container, SickChill will automatically be updated from GitHub.\n\n## HOW-TOs\n\n### Get a new instance of bash in running container\nUse this command instead of `docker attach` if you want to interact with the container while it's running:\n```\n$ docker exec -it sickchill /bin/bash\n```\nor\n```\n$ ./docker-bash.sh sickchill\n```\n\n### Build image\n```\n$ docker build -t arm-sickchill .\n```\nor\n```\n$ ./docker-build.sh arm-sickchill\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fahuh%2Fdocker-arm-sickchill","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fahuh%2Fdocker-arm-sickchill","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fahuh%2Fdocker-arm-sickchill/lists"}