This commit is contained in:
Melvin Strobl
2026-02-03 21:43:09 +01:00
parent 2304b5388e
commit 2cd8e8f634
21 changed files with 4960 additions and 2 deletions
+11
View File
@@ -0,0 +1,11 @@
#! /usr/bin/env sh
# Exit in case of error
set -e
set -x
docker compose build
docker compose down -v --remove-orphans # Remove possibly previous broken stacks left hanging after an error
docker compose up -d
docker compose exec -T backend bash scripts/tests-start.sh "$@"
docker compose down -v --remove-orphans