rewrite for radarr

This commit is contained in:
Michael Balsillie 2022-08-24 11:15:00 +12:00
parent 418fa7e895
commit 6cda398810

View File

@ -1,4 +1,4 @@
ARG SONARR_VERSION=3.0.9.1549
ARG RADARR_VERSION=4.1.0.6175
#FROM golang:bullseye AS builder
#ARG SHOUTRRR_VERSION
#RUN git clone -b ${SHOUTRRR_VERSION} --depth 1 https://github.com/containrrr/shoutrrr.git ./shoutrrr
@ -7,7 +7,7 @@ ARG SONARR_VERSION=3.0.9.1549
# go build -o /output ./shoutrrr
FROM debian:10-slim
ARG SONARR_VERSION
ARG RADARR_VERSION
WORKDIR /root
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
# Install tools to add extra repos
@ -21,37 +21,32 @@ RUN apt-get update && \
apt-transport-https \
tar \
dirmngr
# Add Mono repo key
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF \
# Add Mono repo
&& echo "deb https://download.mono-project.com/repo/debian stable-buster main" | tee /etc/apt/sources.list.d/mono-official-stable.list \
# Mediainfo repo install
&& curl -O https://mediaarea.net/repo/deb/repo-mediaarea_1.0-20_all.deb \
RUN curl -O https://mediaarea.net/repo/deb/repo-mediaarea_1.0-20_all.deb \
&& dpkg -i repo-mediaarea_1.0-20_all.deb \
&& apt-get update
# Install dependancies
RUN apt-get -y install \
sqlite3 \
mono-complete \
mediainfo \
&& rm -rf /var/lib/apt/lists/*
# Create the user that will run the service
RUN useradd -UM -u 1000 -d /app -s /bin/bash sonarr
RUN useradd -UM -u 1000 -d /app -s /bin/bash radarr
# Download and extract the package
RUN mkdir -p /app/bin \
&& mkdir /config \
&& curl -fsSL "https://download.sonarr.tv/v3/main/${SONARR_VERSION}/Sonarr.main.${SONARR_VERSION}.linux.tar.gz" | tar xzf - -C /app/bin --strip-components=1 \
&& rm -rf /app/bin/Sonarr.Update \
&& echo -e "PackageVersion=${SONARR_VERSION}\nPackageAuthor=Michael\nUpdateMethod=Docker\nBranch=main" > "/app/package_info" \
&& curl -fsSL "https://radarr.servarr.com/v1/update/master/updatefile?version=${RADARR_VERSION}&os=linux&runtime=netcore&arch=x64" | tar xzf - -C /app/bin --strip-components=1 \
&& rm -rf /app/bin/Radarr.Update \
&& echo -e "PackageVersion=${RADARR_VERSION}\nPackageAuthor=Michael\nUpdateMethod=Docker\nBranch=master" > "/app/package_info" \
&& chmod -R u=rwX,go=rX /app \
&& chown -R sonarr /app \
&& chown -R sonarr /config
&& chown -R radarr /app \
&& chown -R radarr /config
# Set startup conditions
VOLUME /config
EXPOSE 8989
USER sonarr
EXPOSE 7878
USER radarr
WORKDIR /app
ENTRYPOINT ["mono", "--debug", "/app/bin/Sonarr.exe"]
ENTRYPOINT ["/app/bin/Radarr"]
CMD ["--nobrowser", "--data=/config"]