Workflow update

main
technorabilia 1 year ago
parent 6a6fcdb9f7
commit bab4988d53

@ -0,0 +1,27 @@
# [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}
# Specify a timezone to use for example Europe/Amsterdam
- TZ=${TZ:-Europe/Amsterdam}
volumes:
# Database and Prowlarr configs
- ${BASEDIR:-/volume1/docker}/prowlarr/config:/config
ports:
# The port for the Prowlarr webinterface
- 9696:9696
restart: unless-stopped

@ -0,0 +1,17 @@
# [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).
source ./.env
docker run -d \
--name=prowlarr \
-e PUID=${PUID:-1024} `# for UserID` \
-e PGID=${PGID:-100} `# for GroupID` \
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
-p 9696:9696 `# The port for the Prowlarr webinterface` \
-v ${BASEDIR:-/volume1/docker}/prowlarr/config:/config `# Database and Prowlarr configs` \
--restart unless-stopped \
ghcr.io/linuxserver/prowlarr

@ -0,0 +1,3 @@
ln -s ../docker-env.cfg ./.env
. ./.env
mkdir -p ${BASEDIR:-/volume1/docker}/prowlarr/config
Loading…
Cancel
Save