In this segment, we are going to show you “How to Install Jackett on OpenMediaVault 5 with Command line using Raspberry Pi 4“
What is Jackett?
![]() | Jackett works as a proxy server: it translates queries from apps (Sonarr, Radarr, 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.”
OpenMediaVault Versions :
OpenMediaVault 5 Installation Guide :
https://pcmac.biz/openmediavault-5-on-raspberry-pi/Software Required :
| Equipment Required | Optional | ||
| Raspberry Pi 4 | Case | ||
| SD Card | Raspberry Pi Keyboard | ||
| Ethernet Cable | Mouse | ||
| Power Adapter | |||
| External HDD | |||
| Shop now | |||
We may earn a commission for purchases using our links. Learn more.
Credits
Full credit goes to the Linux server. Image URL: linuxserver/jackett
Docker-Compose
--- version: "2.1" services: jackett: image: ghcr.io/linuxserver/jackett container_name: jackett environment: - PUID=1000 - PGID=1000 - TZ=Europe/London - AUTO_UPDATE=true #optional - RUN_OPTS=<run options here> #optional volumes: - <path to data>:/config - <path to blackhole>:/downloads ports: - 9117:9117 restart: unless-stopped
Docker CLI
docker run -d \ --name=jackett \ -e PUID=1000 \ -e PGID=1000 \ -e TZ=Europe/London \ -e AUTO_UPDATE=true `#optional` \ -e RUN_OPTS=<run options here> `#optional` \ -p 9117:9117 \ -v <path to data>:/config \ -v <path to blackhole>:/downloads \ --restart unless-stopped \ ghcr.io/linuxserver/jackett
How to find PUID & PGID
- However, to find PUID and PGID we can use the below-given command.
id name of the user UID : "PUID" GID : "PGID"
Jackett Container Configuration
[wptabs id=”6174″]
- Once all the steps successfully completed, we can go ahead and click on Deploy the Container.
Access Jackett Web Interface
- Now, we can access Jackett web interface by using OpenMediaVault IP Address:9117
- However, you can follow the on-screen instructions to configure Jackett or you can refer to our video.
In conclusion,
You are all set to use Raspberry Pi 4 as Jackett on OpenMediaVault 5 with the help of Docker. If you face any issues regarding this article please share your thoughts.
Enjoy using Jackett on Docker using Openmediavault. Smile (.”_”.)
Please check out my other articles:
Did you find us helpful?Support us on Patreon, Follow us on Facebook |


