Sign inSign up

spritsail/radarr

By spritsail

Updated 7 days ago

A Docker image for running the Movie management program Radarr

Image
3

1M+

spritsail/radarr repository overview

Spritsail/Radarr

Layers Latest Version Git Commit Docker Pulls Docker Stars Build Status

Radarr running in Alpine Linux. This container provides some simple initial configuration scripts to set some runtime variables (see #Configuration for details)

Usage

Basic usage with default configuration:

docker run -dt
    --name=radarr
    --restart=always
    -v $PWD/config:/config
    -p 7878:7878
    spritsail/radarr

Note: Is is important to use -t (pseudo-tty) as without it there are no logs produced.

Advanced usage with custom configuration:

docker run -dt
    --name=radarr
    --restart=always
    -v $PWD/config:/config
    -p 7878:7878
    -e URL_BASE=/radarr
    -e ANALYTICS=false
    -e ...
    spritsail/radarr
Volumes
  • /config - Radarr configuration file and database storage. Should be readable and writeable by $SUID

Other files accessed by Radarr such as movie directories should also be readable and writeable by $SUID or $SGID with sufficient permissions.

$SUID defaults to 901

Configuration

These configuration options set the respective options in config.xml and are provided as a Docker convenience.

  • LOG_LEVEL - Options are: Trace, Debug, Info. Default is Info
  • URL_BASE - Configurable by the user. Default is empty
  • BRANCH - Upstream tracking branch for updates. Options are: master, develop, other. Default is develop
  • ANALYTICS - Truthy or falsy value true, false or similar. Default is true

Tag summary

Content type

Image

Digest

sha256:7b8d1a445

Size

81.3 MB

Last updated

about 1 year ago

docker pull spritsail/radarr