This commit is contained in:
Andreas Wilms
2025-09-08 18:30:35 +02:00
commit f12cc8b2ce
130 changed files with 16911 additions and 0 deletions

18
deploy.sh Executable file
View File

@@ -0,0 +1,18 @@
-#!/bin/bash
# Setze das aktuelle Verzeichnis auf den Speicherort des Skripts
cd "$(dirname "$0")"
#echo "Pull git"
#git pull
echo "Stopping existing Docker containers..."
docker-compose down --remove-orphans
echo "Rebuilding and starting Docker containers..."
docker-compose up --build -d
echo "Clean Docker Var Lib"
docker system prune -a
echo "Done!"