add jackett

This commit is contained in:
kev 2022-08-25 17:59:29 +08:00
parent a67c7cbdad
commit 1396cc4810
3 changed files with 32 additions and 0 deletions

View File

@ -355,6 +355,7 @@ A collection of delicious docker recipes.
- [x] hivemq/hivemq-ce
- [x] homeassistant/home-assistant
- [x] h2non/imaginary
- [x] linuxserver/jackett
- [x] jellyfin/jellyfin
- [x] jenkins
- [x] inbound-agent

16
jackett/README.md Normal file
View File

@ -0,0 +1,16 @@
jackett
=======
[Jackett][1] works as a proxy server: it translates queries from apps (Sonarr,
Radarr, SickRage, CouchPotato, Mylar3, Lidarr, DuckieTV, qBittorrent, Nefarious
etc.) into tracker-site-specific http queries, parses the html or json
response, and then sends results back to the requesting software.
```bash
$ mkdir -p data/{etc,var}
$ chown -R 1000:1000 data
$ docker-compose up -d
$ curl http://127.0.0.1:9117
```
[1]: https://github.com/Jackett/Jackett

View File

@ -0,0 +1,15 @@
version: "3.8"
services:
jackett:
image: linuxserver/jackett
volumes:
- ./data/etc:/config
- ./data/var:/downloads
ports:
- "9117:9117"
environment:
- PUID=1000
- PGID=1000
- TZ=UTC
- AUTO_UPDATE=true
restart: unless-stopped