2021-04-21 00:55:42 +00:00
|
|
|
# [Lidarr](https://github.com/lidarr/Lidarr) is a music collection manager for
|
|
|
|
# Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks
|
|
|
|
# from your favorite artists and will grab, sort and rename them. It can also be
|
|
|
|
# configured to automatically upgrade the quality of files already downloaded
|
|
|
|
# when a better quality format becomes available.
|
2021-04-10 10:16:29 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
version: "2.1"
|
|
|
|
services:
|
|
|
|
lidarr:
|
|
|
|
image: ghcr.io/linuxserver/lidarr
|
|
|
|
container_name: lidarr
|
|
|
|
environment:
|
|
|
|
# for GroupID
|
|
|
|
- PUID=${PUID:-1024}
|
|
|
|
# for UserID
|
|
|
|
- PGID=${PGID:-100}
|
|
|
|
# Specify a timezone to use for example Europe/Amsterdam
|
2021-04-13 00:58:58 +00:00
|
|
|
- TZ=${TZ:-Europe/Amsterdam}
|
2021-04-10 10:16:29 +00:00
|
|
|
volumes:
|
|
|
|
# Configuration files for Lidarr.
|
|
|
|
- ${BASEDIR:-/volume1/docker}/lidarr/config:/config
|
|
|
|
# Music files (See note in Application setup).
|
2021-07-14 00:43:17 +00:00
|
|
|
- ${BASEDIR:-/volume1/docker}/lidarr/music:/music # optional
|
2021-04-10 10:16:29 +00:00
|
|
|
# Path to your download folder for music (See note in Application setup).
|
2021-07-14 00:43:17 +00:00
|
|
|
- ${BASEDIR:-/volume1/docker}/lidarr/downloads:/downloads # optional
|
2021-04-10 10:16:29 +00:00
|
|
|
ports:
|
|
|
|
# Application WebUI
|
|
|
|
- 8686:8686
|
|
|
|
restart: unless-stopped
|