You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
1.1 KiB
Bash

# [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.
. ./.env
docker run -d \
--name=lidarr \
-e PUID=${PUID:-1024} `# for UserID` \
-e PGID=${PGID:-100} `# for GroupID` \
-e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
-p 8686:8686 `# Application WebUI` \
-v ${BASEDIR:-/volume1/docker}/lidarr/config:/config `# Configuration files for Lidarr.` \
-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).` \
--restart unless-stopped \
ghcr.io/linuxserver/lidarr