Installs Jackett into a Linux Container
Several tag are available:
- latest: see alpine-core
- alpine: see alpine-core
- alpine-core: Dockerfile_alpine-core
Jackett works as a proxy server: it translates queries from apps (Sonarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software. This allows for getting recent uploads (like RSS) and performing searches. Jackett is a single repository of maintained indexer scraping & translation logic - removing the burden from other apps.
Developer note: The software implements the Torznab (with nZEDb category numbering) and TorrentPotato APIs.
https://github.com/Jackett/Jackett
docker create --name=jackett \
-v <path to config>:/config \
-v <path to downloads>:/downloads \
-e UID=<UID default:12345> \
-e GID=<GID default:12345> \
-e AUTOUPGRADE=<0|1 default:0> \
-e TZ=<timezone default:Europe/Brussels> \
-p 9117:9117 \
digrouz/jackett
When you start the jackett
image, you can adjust the configuration of the jackett
instance by passing one or more environment variables on the docker run
command line.
This variable is not mandatory and specifies the user id that will be set to run the application. It has default value 12345
.
This variable is not mandatory and specifies the group id that will be set to run the application. It has default value 12345
.
This variable is not mandatory and specifies if the container has to launch software update at startup or not. Valid values are 0
and 1
. It has default value 0
.
This variable is not mandatory and specifies the timezone to be configured within the container. It has default value Europe/Brussels
.
- This container is built using s6-overlay
- The docker entrypoint can upgrade operating system at each startup. To enable this feature, just add
-e AUTOUPGRADE=1
at container creation.
If you encounter an issue please open a ticket at github