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.
72 lines
1.9 KiB
72 lines
1.9 KiB
FROM linuxserver/lidarr:amd64-latest
|
|
LABEL maintainer="RandomNinjaAtk"
|
|
|
|
ENV dockerTitle="lidarr-extended"
|
|
ENV dockerVersion="amd64-1.0.23"
|
|
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
|
|
ENV numberOfRelatedArtistsToAddPerArtist=5
|
|
ENV beetsMatchPercentage=90
|
|
ENV requireQuality=true
|
|
ENV searchSort=date
|
|
ENV enableBeetsTagging=true
|
|
ENV enableReplaygainTags=true
|
|
ENV downloadPath=/downloads-lidarr-extended
|
|
ENV SMA_PATH /usr/local/sma
|
|
|
|
RUN \
|
|
echo "*** install packages ***" && \
|
|
apk add -U --upgrade --no-cache \
|
|
musl-locales \
|
|
musl-locales-lang \
|
|
flac \
|
|
beets \
|
|
jq \
|
|
git \
|
|
gcc \
|
|
ffmpeg \
|
|
python3-dev \
|
|
libc-dev \
|
|
py3-pip \
|
|
yt-dlp && \
|
|
echo "*** install python packages ***" && \
|
|
pip install --upgrade \
|
|
yq \
|
|
pyacoustid \
|
|
tidal-dl \
|
|
r128gain \
|
|
deemix &&\
|
|
echo "************ setup SMA ************" && \
|
|
echo "************ setup directory ************" && \
|
|
mkdir -p ${SMA_PATH} && \
|
|
echo "************ download repo ************" && \
|
|
git clone https://github.com/mdhiggins/sickbeard_mp4_automator.git ${SMA_PATH} && \
|
|
mkdir -p ${SMA_PATH}/config && \
|
|
echo "************ create logging file ************" && \
|
|
mkdir -p ${SMA_PATH}/config && \
|
|
touch ${SMA_PATH}/config/sma.log && \
|
|
chgrp users ${SMA_PATH}/config/sma.log && \
|
|
chmod g+w ${SMA_PATH}/config/sma.log && \
|
|
echo "************ install pip dependencies ************" && \
|
|
python3 -m pip install --user --upgrade pip && \
|
|
pip3 install -r ${SMA_PATH}/setup/requirements.txt
|
|
|
|
# copy local files
|
|
COPY root/ /
|
|
|
|
WORKDIR /config
|
|
|
|
# ports and volumes
|
|
EXPOSE 8686
|
|
VOLUME /config /downloads-lidarr-extended /music /music-videos
|