Skip to content

rafaelncarvalho/docker-rpi-radarr

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

docker-rpi-radarr

This is a raspberry pi compatible Radarr DockerFile.

To build it :

docker build -t rpi-radarr .

To run it (with image on docker hub) :

docker run -d -p 7878:7878 \
-v /path_to_your_media_folder:/volumes/media \
-v /path_to_your_config_folder:/volumes/config \
-v /etc/localtime:/etc/localtime:ro \
--restart unless-stopped \
--name radarr \
rafaelncarvalho/rpi-radarr

Description of parameters :

  • -d : to launch container as demon
  • -v /path_to_your_media_folder:/volumes/media : mount media folder in your container to a folder in your host. The media folder is the folder where radarr scan your actuals media
  • -v /path_to_your_config_folder:/volumes/config : mount config folder in your container to a folder in your host
  • -v /etc/localtime:/etc/localtime:ro : synchronise time between host and container
  • --restart unless-stopped : restart the container unless it has been stopped by user
  • --name radarr : container's name
  • rafaelncarvalho/rpi-radarr : image's name

About

DockerFile for radarr on Raspberry Pi

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published