Testing, BugFixes and Review Improvements
- Fix SabNZBD hostname whitelist issues - Add transmission settings to GUI - Fix some qbittorrent connection issues - Remove Torrent Ingress - Fix some device mounting gui issues - Change repo url references - Cleaning up the homepage - Drop Deluge (App is not safe due to being mostly abandoned) - Move Emby to own Non-Root container - Create new trains and move charts->stable - Add Plex app - update emby and plex intel hardware support - Implement new parallel CI for Apps - Move PGID, PUID, TZ and UMASK settings to "Container Image" configuration - Stop running some workflows on staging - Add branch security trigger to matrix workflows Co-authored-by: Troy Prelog <35702532+tprelog@users.noreply.github.com>
This commit is contained in:
co-authored by
Troy Prelog
parent
c9a3f01580
commit
56211222bf
@@ -20,19 +20,17 @@ RUN \
|
||||
&& apt-get -qq update \
|
||||
&& \
|
||||
apt-get -qq install -y \
|
||||
libicu66 \
|
||||
mediainfo \
|
||||
mono-devel \
|
||||
ca-certificates-mono \
|
||||
mono-complete=${MONO_VERSION}\* \
|
||||
libmediainfo0v5 \
|
||||
&& \
|
||||
curl -fsSL -o /tmp/sonarr.tar.gz \
|
||||
"https://download.sonarr.tv/v3/phantom-develop/${VERSION}/Sonarr.phantom-develop.${VERSION}.linux.tar.gz" \
|
||||
"https://download.sonarr.tv/v3/main/${VERSION}/Sonarr.main.${VERSION}.linux.tar.gz" \
|
||||
&& tar ixzf /tmp/sonarr.tar.gz -C /app --strip-components 1 \
|
||||
&& \
|
||||
rm -rf \
|
||||
/app/Sonarr.Update* \
|
||||
&& \
|
||||
printf "UpdateMethod=docker\nBranch=phantom-develop\nPackageVersion=%s\nPackageAuthor=[TrueCharts Project](https://truecharts.org)" "${VERSION}" > /app/package_info \
|
||||
printf "UpdateMethod=docker\nBranch=main\nPackageVersion=%s\nPackageAuthor=[TrueCharts Project](https://truecharts.org)" "${VERSION}" > /app/package_info \
|
||||
&& \
|
||||
gpgconf --kill all \
|
||||
&& apt-get remove -y gnupg2 \
|
||||
|
||||
@@ -1 +1 @@
|
||||
3.0.5.1143
|
||||
3.0.5.1144
|
||||
|
||||
@@ -4,4 +4,4 @@
|
||||
source "/shim/umask.sh"
|
||||
source "/shim/vpn.sh"
|
||||
|
||||
exec /usr/bin/mono --debug /app/Sonarr.exe -nobrowser -data=/config ${EXTRA_ARGS}
|
||||
exec /usr/bin/mono --debug /app/Sonarr.exe --nobrowser --data=/config ${EXTRA_ARGS}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
---
|
||||
process:
|
||||
mono:
|
||||
running: true
|
||||
@@ -10,4 +11,4 @@ http:
|
||||
http://localhost:8989:
|
||||
status: 200
|
||||
body:
|
||||
- '<title>Sonarr (Preview)</title>'
|
||||
- '<title>Sonarr (Preview)</title>'
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
version=$(curl -sX GET "https://services.sonarr.tv/v1/download/phantom-develop?version=3" | jq --raw-output '.version')
|
||||
version=$(curl -sX GET "https://services.sonarr.tv/v1/download/main?version=3" | jq --raw-output '.version')
|
||||
version="${version#*v}"
|
||||
version="${version#*release-}"
|
||||
printf "%s" "${version}"
|
||||
|
||||
Reference in New Issue
Block a user