mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-21 18:06:36 +02:00
add jackett
This commit is contained in:
parent
a67c7cbdad
commit
1396cc4810
@ -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
16
jackett/README.md
Normal 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
|
15
jackett/docker-compose.yml
Normal file
15
jackett/docker-compose.yml
Normal 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
|
Loading…
Reference in New Issue
Block a user