From 9b141097273f12289bc82e519f4205be01a9e5ff Mon Sep 17 00:00:00 2001 From: Josh Creek <8179928+jcreek@users.noreply.github.com> Date: Tue, 1 Sep 2026 23:08:01 +0100 Subject: [PATCH] test(multiplayer): retain failed database container --- scripts/verify_control_plane_integration.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/verify_control_plane_integration.sh b/scripts/verify_control_plane_integration.sh index 7bbaaa06..a1a46b8c 100755 --- a/scripts/verify_control_plane_integration.sh +++ b/scripts/verify_control_plane_integration.sh @@ -51,7 +51,7 @@ cleanup() { trap cleanup EXIT docker rm -f "$container_name" >/dev/null 2>&1 || true -docker run --rm -d --name "$container_name" \ +docker run -d --name "$container_name" \ -e POSTGRES_DB="$database" \ -e POSTGRES_USER="$user" \ -e POSTGRES_PASSWORD="$password" \