Skip to content

Latest commit

 

History

History
60 lines (45 loc) · 2.19 KB

README.md

File metadata and controls

60 lines (45 loc) · 2.19 KB

Layers Latest Version Git Commit Docker Pulls Docker Stars Build Status

Lidarr 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=lidarr
    --restart=always
    -v $PWD/config:/config
    -p 8686:8686
    spritsail/lidarr

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=lidarr
    --restart=always
    -v $PWD/config:/config
    -p 8686:8686
    -e URL_BASE=/lidarr
    -e ANALYTICS=false
    -e ...
    spritsail/lidarr

Volumes

  • /config - Lidarr configuration file and database storage. Should be readable and writeable by $SUID

Other files accessed by Lidarr such as tv-show directories should also be readable and writeable by $SUID or $SGID with sufficient permissions.

$SUID defaults to 923

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