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
|
|
|
|
|
|
|
source ./.env
|
|
|
|
docker run -d \
|
|
|
|
--name=lidarr \
|
2022-04-02 00:45:58 +00:00
|
|
|
-e PUID=${PUID:-1024} `# for UserID` \
|
|
|
|
-e PGID=${PGID:-100} `# for GroupID` \
|
2021-04-13 00:58:58 +00:00
|
|
|
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
|
2021-04-10 10:16:29 +00:00
|
|
|
-p 8686:8686 `# Application WebUI` \
|
|
|
|
-v ${BASEDIR:-/volume1/docker}/lidarr/config:/config `# Configuration files for Lidarr.` \
|
2021-07-14 00:43:17 +00:00
|
|
|
-v ${BASEDIR:-/volume1/docker}/lidarr/music:/music `# optional` `# Music files (See note in Application setup).` \
|
|
|
|
-v ${BASEDIR:-/volume1/docker}/lidarr/downloads:/downloads `# optional` `# Path to your download folder for music (See note in Application setup).` \
|
2021-04-10 10:16:29 +00:00
|
|
|
--restart unless-stopped \
|
|
|
|
ghcr.io/linuxserver/lidarr
|