mirror of
https://github.com/linuxserver/docker-jackett.git
synced 2026-01-09 06:42:04 +08:00
108 lines
5.2 KiB
YAML
108 lines
5.2 KiB
YAML
---
|
|
|
|
# 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_categories: "Indexers"
|
|
# supported architectures
|
|
available_architectures:
|
|
- {arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
|
|
- {arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
|
|
# container parameters
|
|
common_param_env_vars_enabled: true
|
|
param_container_name: "{{ project_name }}"
|
|
param_usage_include_vols: true
|
|
param_volumes:
|
|
- {vol_path: "/config", vol_host_path: "/path/to/{{ project_name }}/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"}
|
|
# optional container parameters
|
|
opt_param_usage_include_env: true
|
|
opt_param_env_vars:
|
|
- {env_var: "AUTO_UPDATE", env_value: "true", desc: "Allow Jackett to update inside of the container."}
|
|
- {env_var: "RUN_OPTS", env_value: "", desc: "Optionally specify additional arguments to be passed."}
|
|
readonly_supported: true
|
|
readonly_message: |
|
|
* `AUTO_UPDATE` will not be available.
|
|
nonroot_supported: true
|
|
nonroot_message: |
|
|
* `AUTO_UPDATE` will not be available.
|
|
# 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 }}).
|
|
# init diagram
|
|
init_diagram: |
|
|
"jackett:latest": {
|
|
docker-mods
|
|
base {
|
|
fix-attr +\nlegacy cont-init
|
|
}
|
|
docker-mods -> base
|
|
legacy-services
|
|
custom services
|
|
init-services -> legacy-services
|
|
init-services -> custom services
|
|
custom services -> legacy-services
|
|
legacy-services -> ci-service-check
|
|
init-migrations -> init-adduser
|
|
init-os-end -> init-config
|
|
init-config -> init-config-end
|
|
init-crontab-config -> init-config-end
|
|
init-jackett-config -> init-config-end
|
|
init-config -> init-crontab-config
|
|
init-mods-end -> init-custom-files
|
|
init-adduser -> init-device-perms
|
|
base -> init-envfile
|
|
init-config -> init-jackett-config
|
|
base -> init-migrations
|
|
init-config-end -> init-mods
|
|
init-mods-package-install -> init-mods-end
|
|
init-mods -> init-mods-package-install
|
|
init-adduser -> init-os-end
|
|
init-device-perms -> init-os-end
|
|
init-envfile -> init-os-end
|
|
init-custom-files -> init-services
|
|
init-services -> svc-cron
|
|
svc-cron -> legacy-services
|
|
init-services -> svc-jackett
|
|
svc-jackett -> legacy-services
|
|
}
|
|
Base Images: {
|
|
"baseimage-alpine:3.22"
|
|
}
|
|
"jackett:latest" <- Base Images
|
|
# changelog
|
|
changelogs:
|
|
- {date: "09.07.25:", desc: "Rebase to Alpine 3.22."}
|
|
- {date: "12.01.25:", desc: "Rebase to Alpine 3.21."}
|
|
- {date: "31.05.24:", desc: "Rebase to Alpine 3.20."}
|
|
- {date: "11.03.24:", desc: "Rebase to Alpine 3.19. Deprecate development tag as upstream is publishing nightly stable releases."}
|
|
- {date: "11.07.23:", desc: "Rebase to Alpine 3.18."}
|
|
- {date: "01.07.23:", desc: "Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)"}
|
|
- {date: "13.02.23:", desc: "Add icu-data-full to address [ICU issue](https://github.com/Jackett/Jackett/issues/14008) with Cyrillic character sets."}
|
|
- {date: "11.02.23:", desc: "Rebase to Alpine 3.17, migrate to s6v3."}
|
|
- {date: "10.05.22:", desc: "Rebase to Ubuntu Focal."}
|
|
- {date: "24.05.20:", desc: "Allow user to optionally enable auto updates."}
|
|
- {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."}
|