18 lines
397 B
YAML
18 lines
397 B
YAML
|
---
|
||
|
version: "2.1"
|
||
|
services:
|
||
|
jackett:
|
||
|
image: ghcr.io/linuxserver/jackett
|
||
|
container_name: jackett
|
||
|
environment:
|
||
|
- PUID=1000
|
||
|
- PGID=1000
|
||
|
- TZ=America/New_York
|
||
|
- AUTO_UPDATE=true #optional
|
||
|
volumes:
|
||
|
- /kubernetes-volumes/jackett:/config
|
||
|
- /mnt/storage/Torrents/downloads/complete:/downloads
|
||
|
ports:
|
||
|
- 9117:9117
|
||
|
restart: unless-stopped
|