forked from linuxserver/docker-jackett
-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme-vars.yml
74 lines (66 loc) · 3.78 KB
/
readme-vars.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
---
# project information
project_name: jackett
project_url: "https://github.com/Jackett/Jackett"
project_logo: "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/jackett-banner.png"
project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) 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."
project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}"
project_blurb_optional_extras_enabled: false
# supported architectures
available_architectures:
- { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
- { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
- { arch: "{{ arch_armhf }}", tag: "arm32v7-latest"}
# development version
development_versions: true
development_versions_items:
- { tag: "latest", desc: "Stable Jackett Releases" }
- { tag: "development", desc: "Latest Jackett Releases" }
# container parameters
common_param_env_vars_enabled: true
param_container_name: "{{ project_name }}"
param_usage_include_net: false
param_usage_include_env: true
param_env_vars:
- { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London." }
param_usage_include_vols: true
param_volumes:
- { vol_path: "/config", vol_host_path: "<path to data>", desc: "Where Jackett should store its config file." }
- { vol_path: "/downloads", vol_host_path: "<path to blackhole>", desc: "Path to torrent blackhole." }
param_usage_include_ports: true
param_ports:
- { external_port: "9117", internal_port: "9117", port_desc: "WebUI" }
param_device_map: false
cap_add_param: false
# optional container parameters
opt_param_usage_include_env: true
opt_param_env_vars:
- { env_var: "RUN_OPTS", env_value: "<run options here>", desc: "Optionally specify additional arguments to be passed. EG. `--ProxyConnection=10.0.0.100:1234`." }
opt_param_usage_include_vols: false
opt_param_usage_include_ports: false
opt_param_device_map: false
opt_cap_add_param: false
optional_block_1: false
# application setup block
app_setup_block_enabled: true
app_setup_block: |
The web interface is at `<your-ip>:9117` , configure various trackers and connections to other apps there.
More info at [{{ project_name|capitalize }}]({{ project_url }}).
Disable autoupdates in the webui to prevent jackett crashing, the image is refreshed when new versions are released.
# changelog
changelogs:
- { date: "31.12.19:", desc: "Remove agressive startup chowning." }
- { date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag." }
- { date: "10.03.19:", desc: "Switch to net-core builds of jackett, not dependant on mono and smaller images." }
- { date: "11.02.19:", desc: "Add pipeline logic and multi arch." }
- { date: "11.06.18:", desc: "Ensure root ownership of Jackett files." }
- { date: "13.12.17:", desc: "Fix continuation lines." }
- { date: "17.04.17:", desc: "Switch to using inhouse mono baseimage, ubuntu xenial based." }
- { date: "09.02.17:", desc: "Rebase to alpine 3.5." }
- { date: "29.10.16:", desc: "Call python2 from edge main to satisfy new mono dependency." }
- { date: "14.10.16:", desc: "Add version layer information." }
- { date: "22.09.16:", desc: "Remove autoupdate, tidy up Dockerfile." }
- { date: "10.09.16:", desc: "Add layer badges to README." }
- { date: "28.08.16:", desc: "Add badges to README." }
- { date: "06.08.16:", desc: "Rebase to alpine linux for smaller image." }
- { date: "25.01.16:", desc: "Initial Release." }