refactor: simplify docker e2e harness scripts

This commit is contained in:
Peter Steinberger
2026-04-29 08:45:36 +01:00
parent 2b811fe6d9
commit 8ac2dd4cd2
27 changed files with 1763 additions and 1801 deletions

View File

@@ -67,3 +67,14 @@ docker_e2e_run_with_harness() {
docker_e2e_harness_mount_args
docker run --rm "${DOCKER_E2E_HARNESS_ARGS[@]}" "$@"
}
docker_e2e_run_detached_with_harness() {
docker_e2e_harness_mount_args
docker run -d "${DOCKER_E2E_HARNESS_ARGS[@]}" "$@"
}
docker_e2e_run_logged_with_harness() {
local label="$1"
shift
run_logged "$label" docker_e2e_run_with_harness "$@"
}