From 437a1c8cc5629b3dcabba9cbb4d000e3bd0dc8cd Mon Sep 17 00:00:00 2001 From: Your Name Date: Fri, 30 May 2025 20:35:19 +1200 Subject: [PATCH] :-'Generic Commit' --- test-docker.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test-docker.sh b/test-docker.sh index 8730cbf..d320474 100755 --- a/test-docker.sh +++ b/test-docker.sh @@ -31,11 +31,12 @@ function wait_for_container { fi else echo "${container_name}: container_state=${container_state}" + health_status="${container_state}" waiting_done="true" fi sleep 1; done; - [ "${health_status}" == "healthy" ] || die "Container ${container_name} is not healthy" + [ "${health_status}" == "healthy" ] || die "Container ${container_name} is not healthy: ${health_status}" } #------------------------------------------------------------------------------------------------