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.
The resulting docker image can be found here https://hub.docker.com/r/culater/radarr
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
Please report any issues to the Gitlab issue tracker
More information about radarr can be found here: radarr
The docker image auto-updates after a new release of radarr within a few days.
Content type
Image
Digest
sha256:a3b82ef72…
Size
190.2 MB
Last updated
3 days ago
docker pull culater/radarr