Flexibles KI Prompt System #48
13
find-container.sh
Normal file
13
find-container.sh
Normal 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
|
||||
Loading…
Reference in New Issue
Block a user