Jackett works as a proxy server.
Jackett will store its configuration data in a directory on the Host VM.
On the Ubuntu VM Host, create a directory for this config data.
mkdir /home/peter/jackett mkdir /home/peter/jackett/config mkdir /home/peter/jackett/downloads
NOTE: The downloads directory will be used by other services too, so not within the jackett directory.
On the Ubuntu VM Host:
id peter
returns:
uid=1000(peter) gid=1000(peter) groups=1000(peter)...
NOTE: Take a note of the UID and GID numbers.
In Portainer:
--- version: "2.1" services: jackett: image: ghcr.io/linuxserver/jackett container_name: jackett environment: - PUID=1000 - PGID=1000 - TZ=Europe/Jersey - AUTO_UPDATE=true #optional # - RUN_OPTS=<run options here> #optional volumes: - /home/peter/jackett/config:/config - /home/peter/jackett/downloads:/downloads ports: - 9117:9117 restart: unless-stopped
NOTE: Change settings as required.
Open Portainer.
Press F5 to refresh.
NOTE: This should show the Jackett container running.
Visit http://192.168.1.30:9117 in a browser.
NOTE: The IP address is whatever the Ubuntu VM is using.
Configure as required.