1
0
Fork 0

Add scripts from aech

This commit is contained in:
Tobias Strobel 2021-08-12 17:52:55 +02:00
parent 4bbff4ba6f
commit f0e8c19397
5 changed files with 367 additions and 0 deletions

View file

@ -0,0 +1,10 @@
#!/bin/bash
echo "Downloading latest version of docker-compose..."
curl -L https://github.com/docker/compose/releases/download/$(curl -Ls https://www.servercow.de/docker-compose/latest.php)/docker-compose-$(uname -s)-$(uname -m) > /usr/local/bin/docker-compose
if [ $? -eq 0 ]; then
chmod +x /usr/local/bin/docker-compose
else
echo "Upgrade failed!"
fi