2025.04.11-11:50

This commit is contained in:
2025-04-11 11:47:25 +02:00
parent 182023b312
commit e47962aeaa
12 changed files with 753 additions and 40 deletions

View File

@ -0,0 +1,22 @@
#!/bin/sh
#
# Check if user is root
#
if [ $(id -u) != "0" ]; then
echo "Error: You must be root to run this script, please use the root user to install the software."
exit 1
fi
if [ ! -f /etc/debian_version ]; then
echo "Unsupported Linux Distribution. Prepared for Debian"
exit 1
fi
################################################################################
#
# docker-compose Update
#
################################################################################
#
apt install -y curl
curl -L "https://github.com/docker/compose/releases/latest/download/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose