Current state: - Pipeline configs working (migration 019) - PipelineConfigModal complete - AdminPromptsPage with tabs - All Phase 1+2 features deployed and tested Next: Consolidate into unified prompt system - Single ai_prompts table for all types - Dynamic stages (unlimited) - Basis prompts + pipeline prompts
14 lines
306 B
Bash
14 lines
306 B
Bash
#!/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
|