This commit is contained in:
Tomasz Borychowski
2020-10-30 14:29:30 +00:00
parent 6a2e89fdcc
commit 5f5e69df77
16 changed files with 497 additions and 17 deletions

29
apps/media/jackett.md Normal file
View File

@@ -0,0 +1,29 @@
# Jackett
API Support for your favorite torrent trackers.
<br>
- [Github repo](https://github.com/Jackett/Jackett)
## docker-compose.yml
```yml
---
version: "2"
services:
jackett:
image: linuxserver/jackett
container_name: jackett
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Dublin
- RUN_OPTS=run options here #optional
ports:
- 9117:9117
volumes:
- ./data:/config
- ./downloads:/downloads
```