External URL: jackett.risingflow.com
Internal URL: http://192.168.1.240:9117
Github URL: https://github.com/linuxserver/docker-jackett
Used for Torrent Searches integrated with Sonarr. However Prowlerr is the more reccomended service compared to Jackett. I may replace with Prowlerr at a later stage.
Docker Compose:
services:
jackett:
image: lscr.io/linuxserver/jackett:latest
container_name: jackett
environment:
- PUID=1000
- PGID=1000
- TZ=Pacific/Auckland # Time zone updated to New Zealand
- AUTO_UPDATE=true # optional
- RUN_OPTS= # optional, ensure any options are properly filled or this line can be removed
volumes:
- ./jackett/config:/config # Store config in a subdirectory relative to the Docker Compose file
- ./jackett/downloads:/downloads # Store downloads in a subdirectory relative to the Docker Compose file
ports:
- 9117:9117
restart: always