This commit is contained in:
2025-11-08 13:42:43 +01:00
commit 7567d3eb05
125 changed files with 16866 additions and 0 deletions

18
deploy.sh Normal 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!"