This commit is contained in:
holzi1005 2024-12-08 11:22:22 +01:00
parent fd38c3bbeb
commit e09a1eed8b

View file

@ -3,12 +3,15 @@
echo "Welcome to the Docker Installer:" echo "Welcome to the Docker Installer:"
echo "" echo ""
echo ""
echo "1. The installer will update all Repos" echo "1. The installer will update all Repos"
apt update apt update
echo ""
echo "2. The installer will install CURL and GIT" echo "2. The installer will install CURL and GIT"
apt install curl git -y apt install curl git -y
echo ""
echo "3. The installer will install Docker and Docker Compose" echo "3. The installer will install Docker and Docker Compose"
apt install docker docker-compose -y apt install docker docker-compose -y
@ -23,7 +26,7 @@ then
else else
mkdir /opt/odc && cd /opt/odc mkdir /opt/odc && cd /opt/odc
git clone https://git.h2-invent.com/datenschutzcenter/docker-compose.git git clone https://git.h2-invent.com/datenschutzcenter/docker-compose.git
cd docker-compose cd $HOME_DIR/docker-compose
fi fi
echo "5. The installer will setup all scripts, so you can docker-compose up" echo "5. The installer will setup all scripts, so you can docker-compose up"