diff --git a/apps/readarr/Dockerfile b/apps/readarr/Dockerfile deleted file mode 100644 index 0dd1e881d..000000000 --- a/apps/readarr/Dockerfile +++ /dev/null @@ -1,61 +0,0 @@ -ARG VERSION -FROM docker.io/library/alpine:3.20 - -ARG TARGETPLATFORM -ARG VERSION -ARG CHANNEL - -ENV \ - COMPlus_EnableDiagnostics="0" \ - READARR__UPDATE__BRANCH="${CHANNEL}" - -ENV UMASK="0002" \ - TZ="Etc/UTC" - -USER root -WORKDIR /app - -#hadolint ignore=DL3018,DL3059 -RUN \ - apk add --no-cache \ - bash \ - ca-certificates \ - catatonit \ - coreutils \ - curl \ - icu-libs \ - jo \ - jq \ - libintl \ - nano \ - sqlite-libs \ - trurl \ - tzdata \ - && \ - case "${TARGETPLATFORM}" in \ - 'linux/amd64') export ARCH='x64' ;; \ - 'linux/arm64') export ARCH='arm64' ;; \ - esac \ - && \ - mkdir -p /app/bin \ - && \ - curl -fsSL "https://readarr.servarr.com/v1/update/${READARR__UPDATE__BRANCH}/updatefile?version=${VERSION}&os=linuxmusl&runtime=netcore&arch=${ARCH}" \ - | tar xzf - -C /app/bin --strip-components=1 \ - && \ - rm -rf /app/bin/Readarr.Update \ - && \ - printf "UpdateMethod=docker\nBranch=%s\nPackageVersion=%s\nPackageAuthor=[onedr0p](https://github.com/onedr0p)\n" "${READARR__UPDATE__BRANCH}" "${VERSION}" > /app/package_info \ - && chown -R root:root /app \ - && chmod -R 755 /app \ - && rm -rf /tmp/* - -COPY ./apps/readarr/entrypoint.sh /entrypoint.sh - -USER nobody:nogroup -WORKDIR /config -VOLUME ["/config"] - -ENTRYPOINT ["/usr/bin/catatonit", "--"] -CMD ["/entrypoint.sh"] - -LABEL org.opencontainers.image.source="https://github.com/Readarr/Readarr" diff --git a/apps/readarr/ci/goss.yaml b/apps/readarr/ci/goss.yaml deleted file mode 100644 index 03c549987..000000000 --- a/apps/readarr/ci/goss.yaml +++ /dev/null @@ -1,12 +0,0 @@ ---- -# yaml-language-server: $schema=https://raw.githubusercontent.com/goss-org/goss/master/docs/schema.yaml -process: - Readarr: - running: true -port: - tcp6:8787: - listening: true -http: - http://localhost:8787: - status: 200 - timeout: 5000 diff --git a/apps/readarr/ci/latest.sh b/apps/readarr/ci/latest.sh deleted file mode 100755 index f3b2060f5..000000000 --- a/apps/readarr/ci/latest.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env bash -channel=$1 -version=$(curl -sX GET "https://readarr.servarr.com/v1/update/${channel}/changes?os=linux&runtime=netcore" | jq --raw-output '.[0].version' 2>/dev/null) -version="${version#*v}" -version="${version#*release-}" -printf "%s" "${version}" diff --git a/apps/readarr/entrypoint.sh b/apps/readarr/entrypoint.sh deleted file mode 100755 index ccd0cdb7c..000000000 --- a/apps/readarr/entrypoint.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/usr/bin/env bash - -#shellcheck disable=SC2086 -exec \ - /app/bin/Readarr \ - --nobrowser \ - --data=/config \ - "$@" diff --git a/apps/readarr/metadata.yaml b/apps/readarr/metadata.yaml deleted file mode 100644 index d45f5ba5d..000000000 --- a/apps/readarr/metadata.yaml +++ /dev/null @@ -1,16 +0,0 @@ ---- -app: readarr -semver: true -channels: - - name: develop - platforms: ["linux/amd64", "linux/arm64"] - stable: false - tests: - enabled: true - type: web - - name: nightly - platforms: ["linux/amd64", "linux/arm64"] - stable: false - tests: - enabled: true - type: web