Skip to content

jackett

Jackett provides indexers.

jackett

Prepare

podman pull lscr.io/linuxserver/jackett:latest
mkdir -p $HOME/apps/{variables,container_data}
touch $HOME/apps/variables/jackett.env
mkdir -p $HOME/apps/container_data/jackett

Edit environment file

Edit the environment file and paste your default values for this service:

nano $HOME/apps/variables/jackett.env

Example contents:

PUID=1025
PGID=1000
TZ=Europe/Athens
AUTO_UPDATE=true

Installation

touch $HOME/.config/containers/systemd/jackett.container
# jackett.container
[Unit]
Description=Jackett
[Container]
ContainerName=jackett
HostName=jackett
AutoUpdate=registry
Image=lscr.io/linuxserver/jackett:latest
Network=skynet.network
DNS=10.0.0.250
#linuxserver.io specific
UIDMap=1025:0:1
UIDMap=0:1:1025
#UIDMap=1026:1026:524288

EnvironmentFile=%h/apps/variables/jackett.env
Volume=%h/apps/container_data/jackett:/config
Volume=/mnt/downloads/watch/:/downloads
[Service]
Restart=always
TimeoutStartSec=300

[Install]
WantedBy=default.target

Configuration of Nginx (Reverse Proxy)

Create nginx conf.

touch /$HOME/apps/container_data/nginx/jackett.conf

Configuration for nginx conf for port 80.

server {
  listen 80;
  server_name indexer1.skynet.lan;
  access_log /var/log/nginx/jackett_access.log;
  error_log /var/log/nginx/jackett_error.log;
  location / {
    proxy_pass http://jackett:9117;
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  }
}

Restart Nginx

systemctl --user restart nginx

Usage

Open http://indexer1.skynet.lan

Troubleshooting

podman logs -f jackett
journalctl --user -u nginx -n 200