From ef69c1fb02cf849f35cd9f0d7f377f8cb8972829 Mon Sep 17 00:00:00 2001 From: Henning Bocklage Date: Fri, 24 Jul 2020 19:32:41 +0200 Subject: [PATCH] maint: switch from notabug to codeberg --- CHANGELOG.md | 3 +++ README.md | 6 +++++- root/etc/cont-init.d/20-download | 4 ++-- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index afcab5a..0bf53e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 2020-07-24 +- Updated code to pull from codeberg instead of notabug + ## 2020-06-12 - Added UMASK_SET environment variable (I misunderstood how it worked.. now it should work) diff --git a/README.md b/README.md index ead48d9..e5b2bc5 100644 --- a/README.md +++ b/README.md @@ -79,13 +79,17 @@ To access the web interface, go to http://YOURSERVERIP:6595 Tag includes `amd64`, `arm32v7` and `arm64v8` architectures. +## Changelog + +See CHANGELOG.md + ## Disclaimer and Links I am in no way affiliated with the Deemix project (or any other Deezloader-like project for that matter). Gitlab link for this container: https://gitlab.com/Bockiii/deemix-docker -Repo for Deemix: https://notabug.org/RemixDev/deemix +Repo for Deemix: https://codeberg.org/RemixDev/deemix Issue Tracker for this Docker: https://gitlab.com/Bockiii/deemix-docker/-/issues diff --git a/root/etc/cont-init.d/20-download b/root/etc/cont-init.d/20-download index f7acec2..efe7bdd 100644 --- a/root/etc/cont-init.d/20-download +++ b/root/etc/cont-init.d/20-download @@ -6,12 +6,12 @@ echo "[cont-init.d] Downloading and unpacking" if [ ! -f "/deemix/server.py" ]; then echo "[cont-init.d] First start, cloning repo" - git clone --recurse-submodules https://notabug.org/RemixDev/deemix-pyweb.git deemix + git clone --recurse-submodules https://codeberg.org/RemixDev/deemix-pyweb.git deemix touch /deemix/updated else cd /deemix localv=$(git rev-parse HEAD) - remotev=$(git ls-remote https://notabug.org/RemixDev/deemix-pyweb.git refs/heads/master | cut -c1-40) + remotev=$(git ls-remote https://codeberg.org/RemixDev/deemix-pyweb.git refs/heads/master | cut -c1-40) if [ $localv = $remotev ]; then echo -e "[cont-init.d] Latest Version. No update needed" else