Flexibles KI Prompt System #48

Merged
Lars merged 56 commits from develop into main 2026-03-26 14:49:48 +01:00
Showing only changes of commit 1b7fdb1739 - Show all commits

13
find-container.sh Normal file
View File

@ -0,0 +1,13 @@
#!/bin/bash
# Find correct container name
echo "Suche Backend-Container..."
echo ""
# List all running containers
echo "Alle laufenden Container:"
docker ps --format "{{.Names}}" | grep -i backend
echo ""
echo "Oder alle Container (auch gestoppte):"
docker ps -a --format "{{.Names}}" | grep -i backend