ARMV7 Image of Jackett, for Credit-Card-sized Computing like Orange PI, Banana PI, Raspberry PI etc.
636
Github: https://github.com/dantavares/docker-jackett
Example of using Docker Compose with qBittorrent:
name: qbtnox
services:
qbtnox:
image: qbittorrentofficial/qbittorrent-nox:latest
container_name: qbittorrent-nox
restart: unless-stopped
ports:
- "8080:8080" #WEBUI Port
- "6881:6881" #Torrent external Port
volumes:
- [folder to bt config]:/config
- [folder to download]:/downloads
depends_on:
- jackett
environment:
QBT_LEGAL_NOTICE: "confirm"
QBT_WEBUI_PORT: "8080"
QBT_TORRENTING_PORT: "6881"
TZ: America/Sao_Paulo
jackett:
image: 44934045/jackett
container_name: jackett
environment:
- TZ=America/Sao_Paulo
- AUTO_UPDATE=true
volumes:
- [folder to jackett config]:/config
- [folder to download]:/downloads
- /tmp:/run/jackett-temp
#ports: #Enable only to config jackett
# - 9117:9117
restart: unless-stopped
You still need to configure the jackett.json file with the API key and URL "http://jackett:9117". The jackett.json file is located in "[folder config]/qBittorrent/data/nova3/engines"
Content type
Image
Digest
sha256:3bb9ad6cd…
Size
71.7 MB
Last updated
3 months ago
docker pull 44934045/jackett