mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-03 03:40:25 +00:00
21 lines
1.2 KiB
Bash
21 lines
1.2 KiB
Bash
|
# Jackett works as a proxy server: it translates queries from apps (Sonarr,
|
||
|
# 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.
|
||
|
|
||
|
source ./.env
|
||
|
docker run -d \
|
||
|
--name=jackett \
|
||
|
-e PUID=${PUID:-1024} `# for GroupID` \
|
||
|
-e PGID=${PGID:-100} `# for UserID` \
|
||
|
-e TZ=Europe/Amsterdam `# Specify a timezone to use for example Europe/Amsterdam` \
|
||
|
-e AUTO_UPDATE=true `# optional` `# Allow Jackett to update inside of the container (currently recommended by Jackett and enabled by default)` \
|
||
|
-e RUN_OPTS=<run options here> `# optional` `# Optionally specify additional arguments to be passed.` \
|
||
|
-p 9117:9117 `# WebUI` \
|
||
|
-v ${BASEDIR:-/volume1/docker}/jackett/config:/config `# Where Jackett should store its config file.` \
|
||
|
-v ${BASEDIR:-/volume1/docker}/jackett/downloads:/downloads `# Path to torrent blackhole.` \
|
||
|
--restart unless-stopped \
|
||
|
ghcr.io/linuxserver/jackett
|