A multiarch Jackett Docker image, based on Debian Linux.
386 | amd64 | arm/v6 | arm/v7 | arm64 | ppc64le | s390x |
---|---|---|---|---|---|---|
✖️ | ✔️ | ✖️ | ✔️ | ✔️ | ✖️ | ✖️ |
docker run -p 9117:9117 -it padhihomelab/jackett
Runs Jackett with WebUI served on port 9117.
To run it in background, use the --detach
flag.
Typically, you shouldn't need to directly access the files written by Jackett to disk, but it is still a good idea (e.g., for easier backups) to map the persistent volume to a host directory:
docker run --detach \
-p 9117:9117 \
-e DOCKER_UID=`id -u` \
-v /path/to/store/configs:/configs \
-v /path/to/client/downloads:/downloads \
-it padhihomelab/jackett
Usage with Docker Compose is similarly straightforward.
As an example, you can see my configuration in [services/indexarr].