mirror of
https://github.com/tborychowski/self-hosted-cookbook.git
synced 2026-01-20 15:40:34 +00:00
media
This commit is contained in:
29
apps/media/jackett.md
Normal file
29
apps/media/jackett.md
Normal 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
|
||||
```
|
||||
Reference in New Issue
Block a user