Sign inSign up

culater/radarr

By culater

Updated 3 days ago

The Radarr App in a Docker Container

Image
0

5.4K

culater/radarr repository overview

docker-radarr

pipeline status radarr Release Docker link

alpine-based dockerized build of radarr. This is part of a collection of docker images, designed to run on a low-end x86 based QNAP NAS server. The aim is to keep the image compact.

Docker

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

Example usage

docker cli run example:

docker run -d \
  -e PUID=1000 \
  -e PGID=1000 \
  -e TZ=Europe/Berlin \
  -p 7878:7878 \
  -v /path/to/config:/config \
  -v /path/to/movies:/movies `#optional but highly recommended` \
  -v /path/to/downloads:/downloads `#optional` \
  --restart unless-stopped \
  culater/radarr

docker-compose example:

---
version: '3'
services:
  radarr:
    image: culater/radarr:latest
    container_name: radarr
    hostname: radarr
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/Berlin
    volumes:
      - /path/to/config:/config
      - /media/movies:/movies
      - /downloads:/downloads
    ports:
      - 7878:7878
    restart: unless-stopped

Reporting problems

Please report any issues to the Gitlab issue tracker

Authors and acknowledgment

More information about radarr can be found here: radarr

Project status

The docker image auto-updates after a new release of radarr within a few days.

Tag summary

Content type

Image

Digest

sha256:a3b82ef72

Size

190.2 MB

Last updated

3 days ago

docker pull culater/radarr