feat(containers)!: Remove support for building containers from this repo

This commit is contained in:
Kjeld Schouten
2025-10-06 18:29:51 +02:00
parent d15b91a0c7
commit 17f82c79b1
32 changed files with 2 additions and 515 deletions
+21
View File
@@ -0,0 +1,21 @@
#!/bin/bash
app="${1}"
if test -f "/containers/apps/${app}/latest-version.sh"; then
version=$(bash "/containers/apps/${app}/latest-version.sh")
if [[ ! -z "${version}" || "${version}" != "null" ]]; then
echo "${version}" | tee "/containers/apps/${app}/VERSION" >/dev/null
echo "App: ${app} using version: ${version}"
fi
fi
if test -f "/containers/apps/${app}/BASE"; then
if test -f "/containers/apps/${app}/latest-base.sh"; then
base=$(bash "/containers/apps/${app}/latest-base.sh")
if [[ ! -z "${base}" || "${base}" != "null" ]]; then
echo "${base}" | tee "/containers/apps/${app}/BASE" >/dev/null
echo "App: ${app} using Base: ${base}"
fi
fi
fi