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
989 B
Bash

3 years ago
# 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.
source ./.env
docker run -d \
--name=lidarr \
-e PUID=${PUID:-1024} `# for GroupID` \
-e PGID=${PGID:-100} `# for UserID` \
3 years ago
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
3 years ago
-p 8686:8686 `# Application WebUI` \
-v ${BASEDIR:-/volume1/docker}/lidarr/config:/config `# Configuration files for Lidarr.` \
-v ${BASEDIR:-/volume1/docker}/lidarr/music:/music `# Music files (See note in Application setup).` \
-v ${BASEDIR:-/volume1/docker}/lidarr/downloads:/downloads `# Path to your download folder for music (See note in Application setup).` \
--restart unless-stopped \
ghcr.io/linuxserver/lidarr