You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.4 KiB
YAML

# [Jackett](https://github.com/Jackett/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.
---
version: "2.1"
services:
jackett:
image: ghcr.io/linuxserver/jackett
container_name: jackett
environment:
# for UserID
- PUID=${PUID:-1024}
# for GroupID
- PGID=${PGID:-100}
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
- TZ=${TZ:-Europe/Amsterdam}
# Allow Jackett to update inside of the container (currently recommended by Jackett and enabled by default)
- AUTO_UPDATE=true # optional
# Optionally specify additional arguments to be passed.
- RUN_OPTS= # optional
volumes:
# Where Jackett should store its config file.
- ${BASEDIR:-/volume1/docker}/jackett/config:/config
# Path to torrent blackhole.
- ${BASEDIR:-/volume1/docker}/jackett/downloads:/downloads
ports:
# WebUI
- 9117:9117
restart: unless-stopped