2023-01-04 00:55:27 +00:00
|
|
|
# [Prowlarr](https://github.com/Prowlarr/Prowlarr) is a indexer manager/proxy
|
|
|
|
# built on the popular arr .net/reactjs base stack to integrate with your
|
|
|
|
# various PVR apps. Prowlarr supports both Torrent Trackers and Usenet Indexers.
|
|
|
|
# It integrates seamlessly with Sonarr, Radarr, Lidarr, and Readarr offering
|
|
|
|
# complete management of your indexers with no per app Indexer setup required
|
|
|
|
# (we do it all).
|
|
|
|
|
|
|
|
---
|
|
|
|
version: "2.1"
|
|
|
|
services:
|
|
|
|
prowlarr:
|
|
|
|
image: ghcr.io/linuxserver/prowlarr
|
|
|
|
container_name: prowlarr
|
|
|
|
environment:
|
|
|
|
# for UserID
|
|
|
|
- PUID=${PUID:-1024}
|
|
|
|
# for GroupID
|
|
|
|
- PGID=${PGID:-100}
|
2023-02-12 01:01:09 +00:00
|
|
|
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
|
2023-01-04 00:55:27 +00:00
|
|
|
- TZ=${TZ:-Europe/Amsterdam}
|
|
|
|
volumes:
|
|
|
|
# Database and Prowlarr configs
|
|
|
|
- ${BASEDIR:-/volume1/docker}/prowlarr/config:/config
|
|
|
|
ports:
|
2024-03-21 00:34:42 +00:00
|
|
|
# The port for the Prowlarr web UI
|
2023-01-04 00:55:27 +00:00
|
|
|
- 9696:9696
|
|
|
|
restart: unless-stopped
|