Jackett on OpenMediaVault 5 using Raspberry Pi 4

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

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 RequiredOptional
Raspberry PiRaspberry Pi 4Case
SD_Card
SD CardRaspberry Pi Keyboard
EthernetEthernet CableMouse
ChargerPower Adapter  
HDDExternal 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

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

 

Harish Kumar

As a founder of the PcMac YouTube channel and website, Our goal is to provide Free Technical help to people and spread knowledge to everyone.
0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments