Files
coolify/templates/compose/prowlarr.yaml
2024-12-12 11:06:19 +01:00

23 lines
720 B
YAML
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# documentation: https://hub.docker.com/r/linuxserver/prowlarr
# slogan: Prowlarr is a indexer manager/proxy built on the popular arr .net/reactjs base stack to integrate with your various PVR apps.
# tags: media, server, movies, tv, indexer, torrent, nzb, usenet
# logo: svgs/prowlarr.svg
# port: 9696
services:
prowlarr:
image: lscr.io/linuxserver/prowlarr:latest
environment:
- SERVICE_FQDN_PROWLARR_9696
- _APP_URL=$SERVICE_FQDN_PROWLARR
- PUID=1000
- PGID=1000
- TZ=${TZ:-America/Toronto}
volumes:
- prowlarr-config:/config
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9696/ping"]
interval: 2s
timeout: 10s
retries: 15