mirror of
https://github.com/Lidarr/Lidarr.git
synced 2024-11-07 22:20:24 -08:00
Page:
Docker
Pages
API
Album Lookup
Album
AppData Directory
Artist Lookup
Artist
Autostart on Linux
Calendar
Command
Connections
Custom Post Processing Scripts
Disable Authentication
Diskspace
Docker
FAQ
Forgot my Password
Health Checks
History
Home
Images
Indexer Seed Ratio
Installation (FreeBSD FreeNAS)
Installation
Issue Labeling Scheme
Log Files
Metadata Source
Naming
Parse
Profile
Profiles
Queue
Release Branches
Release Push
Release
Rootfolder
Setup Development Environment
Supported DownloadClients
Supported ImportLists
Supported Indexers
Supported Notifications
System Backup
System Status
Tags
Track
TrackFile
Wanted Cutoff
Wanted Missing
Write Tags
9
Docker
hotio edited this page 2019-11-16 12:09:33 +01:00
Table of Contents
To get up and running with Lidarr on Docker you can use the unofficial docker image provided by LinuxServer or hotio.
https://github.com/linuxserver/docker-lidarr
docker create \
--name=lidarr \
-v <path to data>:/config \
-v <path to downloads>:/downloads \
-v <path to music>:/music \
-e PGID=<gid> -e PUID=<uid> \
-p 8686:8686 \
linuxserver/lidarr
https://github.com/hotio/docker-lidarr
docker create \
--name=lidarr \
-v <path to data>:/config \
-v <path to downloads>:/downloads \
-v <path to music>:/music \
-e PGID=<gid> -e PUID=<uid> \
-e TZ=Etc/UTC \
-p 8686:8686 \
hotio/lidarr
A more detailed guide to setting up Sonarr, Radarr and Lidarr in docker is available here.
Parameters
Parameter | Function |
---|---|
-p 8686 |
the port(s) |
-v /config |
Contains your config files |
-v /downloads |
Path to your download folder for music |
-v /music |
Path to your music library |
-e PGID |
for GroupID |
-e PUID |
for UserID |
-e TZ |
your timezone |
-e UMASK_SET or -e UMASK |
the umask to use |
These parameters may be out of date if the image is updated. For more documentation that's up-to-date, see the Docker image's github README: linuxserver or hotio.
docker-compose
Example docker-compose.yml
file:
version: '2'
services:
lidarr:
container_name: lidarr
image: linuxserver/lidarr
ports:
- "8686:8686"
volumes:
- ./config:/config
- ./music:/music
- ./downloads:/downloads
version: '2'
services:
lidarr:
container_name: lidarr
image: hotio/lidarr
ports:
- "8686:8686"
volumes:
- ./config:/config
- ./music:/music
- ./downloads:/downloads