docker-bits/lsio/jackett/docker-run.sh

21 lines
1.2 KiB
Bash
Raw Normal View History

2021-04-10 10:16:29 +00:00
# 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