Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/docker-lidarr-extended/src/commit/28bac66165b5f5e55c37c41c0f96eb022b7c59fb/amd64.dockerfile You should set ROOT_URL correctly, otherwise the web may not work correctly.
docker-lidarr-extended/amd64.dockerfile

57 lines
1.2 KiB

FROM linuxserver/lidarr:amd64-latest
LABEL maintainer="RandomNinjaAtk"
ENV dockerTitle="lidarr-extended"
ENV dockerVersion="amd64-1.0.22"
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
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
# copy local files
COPY root/ /
WORKDIR /config
# ports and volumes
EXPOSE 8686
VOLUME /config /downloads-lidarr-extended /music /music-videos