From 1b7fdb173935394592f28dc83f51f009e8ce8fa7 Mon Sep 17 00:00:00 2001 From: Lars Date: Wed, 25 Mar 2026 10:42:18 +0100 Subject: [PATCH] chore: rollback point before unified prompt system refactoring (Issue #28) 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 --- find-container.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 find-container.sh diff --git a/find-container.sh b/find-container.sh new file mode 100644 index 0000000..a773b1e --- /dev/null +++ b/find-container.sh @@ -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