copilot test

This commit is contained in:
Martin Sukany
2025-11-13 11:37:28 +01:00
parent 7ef8e20564
commit 9a7ffdeb2c
12 changed files with 356 additions and 2 deletions

8
scripts/stop_scenar.sh Normal file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/env bash
set -eu
# Usage: ./scripts/stop_scenar.sh [container_name]
NAME=${1:-scenar-creator}
echo "Stopping and removing container '$NAME'..."
docker rm -f "$NAME" >/dev/null 2>&1 || true
echo "Container removed (if it existed)."