You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
921 B
45 lines
921 B
2 years ago
|
FROM linuxserver/lidarr:arm64v8-nightly
|
||
|
LABEL maintainer="RandomNinjaAtk"
|
||
|
|
||
|
ENV dockerTitle="lidarr-extended"
|
||
2 years ago
|
ENV dockerVersion="1.0.141"
|
||
2 years ago
|
ENV LANG=en_US.UTF-8
|
||
|
ENV autoStart=true
|
||
|
ENV configureLidarrWithOptimalSettings=false
|
||
|
ENV audioFormat=native
|
||
|
ENV audioBitrate=lossless
|
||
|
ENV audioLyricType=both
|
||
|
ENV addDeezerTopArtists=false
|
||
|
ENV addDeezerTopAlbumArtists=false
|
||
|
ENV addDeezerTopTrackArtists=false
|
||
|
ENV topLimit=10
|
||
|
ENV addRelatedArtists=false
|
||
|
ENV tidalCountryCode=US
|
||
2 years ago
|
ENV numberOfRelatedArtistsToAddPerArtist=5
|
||
|
ENV beetsMatchPercentage=90
|
||
2 years ago
|
|
||
|
RUN \
|
||
2 years ago
|
echo "*** install packages ***" && \
|
||
2 years ago
|
apk add -U --upgrade --no-cache \
|
||
2 years ago
|
flac \
|
||
|
beets \
|
||
|
jq \
|
||
|
ffmpeg \
|
||
2 years ago
|
python3 \
|
||
2 years ago
|
py3-pip \
|
||
|
yt-dlp && \
|
||
2 years ago
|
echo "*** install python packages ***" && \
|
||
|
pip3 install --upgrade \
|
||
2 years ago
|
yq \
|
||
|
pyacoustid \
|
||
2 years ago
|
deemix
|
||
2 years ago
|
|
||
|
# copy local files
|
||
|
COPY root/ /
|
||
|
|
||
|
WORKDIR /config
|
||
|
|
||
|
# ports and volumes
|
||
|
EXPOSE 8686
|
||
|
VOLUME /config /music /music-videos /downloads
|