parent
89c5cef4e8
commit
429fd3b4d6
@ -0,0 +1,57 @@
|
||||
FROM linuxserver/lidarr:arm64v8-nightly
|
||||
LABEL maintainer="RandomNinjaAtk"
|
||||
|
||||
ENV dockerTitle="lidarr-extended"
|
||||
ENV dockerVersion="1.0.0012"
|
||||
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
|
||||
|
||||
RUN \
|
||||
echo "************ install packages ************" && \
|
||||
apk add -U --update --no-cache \
|
||||
musl-locales \
|
||||
musl-locales-lang \
|
||||
flac \
|
||||
beets \
|
||||
jq \
|
||||
git \
|
||||
gcc \
|
||||
ffmpeg \
|
||||
python3-dev \
|
||||
libc-dev \
|
||||
gpgme-dev \
|
||||
py3-pip \
|
||||
yt-dlp && \
|
||||
echo "************ install python packages ************" && \
|
||||
pip install \
|
||||
yq \
|
||||
r128gain \
|
||||
pyacoustid \
|
||||
deemix && \
|
||||
echo "************ install tidal-dl ************" && \
|
||||
mkdir -p /Tidal-Media-Downloader && \
|
||||
mkdir -p /config/xdg && \
|
||||
git clone https://github.com/yaronzz/Tidal-Media-Downloader.git /Tidal-Media-Downloader && \
|
||||
cd /Tidal-Media-Downloader/TIDALDL-PY && \
|
||||
pip install -r requirements.txt && \
|
||||
python3 setup.py install && \
|
||||
rm -rf /config/xdg
|
||||
|
||||
# copy local files
|
||||
COPY root/ /
|
||||
|
||||
WORKDIR /config
|
||||
|
||||
# ports and volumes
|
||||
EXPOSE 8686
|
||||
VOLUME /config /music /music-videos /downloads
|
Loading…
Reference in new issue