Files
opt/compose.prowlarr.yaml

28 lines
668 B
YAML

services:
prowlarr:
image: linuxserver/prowlarr:2.3.0
container_name: prowlarr
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
volumes:
- /opt/prowlarr:/config/prowlarr
ports:
- 9696:9696
restart: unless-stopped
extra_hosts:
- "flaresolverr:${HOST_IP}"
- "transmission:${HOST_IP}"
- "qbittorrent:${HOST_IP}"
- "jackett:${HOST_IP}"
- "prowlarr:${HOST_IP}"
- "radarr:${HOST_IP}"
- "sonarr:${HOST_IP}"
- "lidarr:${HOST_IP}"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9696/ping"]
interval: 30s
timeout: 10s
retries: 3