alpine-based dockerized build of prowlarr (development branch) This is part of a collection of docker images, designed to run on my low-end x86 based QNAP NAS server. It is a lightweight image.
The resulting docker image can be found here https://hub.docker.com/r/culater/prowlarr
docker cli run example:
docker run -d \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Europe/Berlin \
-p 9696:9696 \
-v /path/to/config:/config \
--restart unless-stopped \
culater/prowlarr
docker-compose example:
---
version: '3'
services:
prowlarr:
image: culater/prowlarr:latest
container_name: prowlarr
hostname: prowlarr
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Berlin
volumes:
- /path/to/config:/config
ports:
- 9696:9696
restart: unless-stopped
Please report any issues to the Gitlab issue tracker
More information about prowlarr can be found here: Prowlarr
The docker image auto-updates after a new (development) release of prowlarr within a few days.
Content type
Image
Digest
sha256:7c49281ed…
Size
106.3 MB
Last updated
4 days ago
docker pull culater/prowlarr