mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-05 00:00:32 +00:00
19 lines
982 B
Bash
19 lines
982 B
Bash
# 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` \
|
|
-e TZ=Europe/Amsterdam `# Specify a timezone to use for example Europe/Amsterdam` \
|
|
-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
|