Sign inSign up

culater/prowlarr

By culater

Updated 4 days ago

The Prowlarr App in a Docker Container

Image
1

10K+

culater/prowlarr repository overview

docker-prowlarr

pipeline status Prowlarr Release Docker link

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.

Docker

The resulting docker image can be found here https://hub.docker.com/r/culater/prowlarr

Example usage

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

Reporting problems

Please report any issues to the Gitlab issue tracker

Authors and acknowledgment

More information about prowlarr can be found here: Prowlarr

Project status

The docker image auto-updates after a new (development) release of prowlarr within a few days.

Tag summary

Content type

Image

Digest

sha256:7c49281ed

Size

106.3 MB

Last updated

4 days ago

docker pull culater/prowlarr