21 lines
467 B
YAML
21 lines
467 B
YAML
services:
|
|
jackett:
|
|
container_name: jackett
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Europe/Amsterdam
|
|
image: linuxserver/jackett:0.24.339
|
|
ports:
|
|
- 9117:9117
|
|
restart: unless-stopped
|
|
volumes:
|
|
- /opt/jackett:/config
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:9117/UI/Dashboard"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
extra_hosts:
|
|
- "flaresolverr:${HOST_IP}"
|