testcontainers-python icon indicating copy to clipboard operation
testcontainers-python copied to clipboard

Add a wait_for_healthcheck method to DockerCompose

Open csikb opened this issue 2 years ago • 2 comments

It's possible to check if the healthcheck passed trought the cli. docker ps --format json will list all the services running and their corresponding healthchecks.

Proposed method signature: compose.wait_for_healthcheck(sec: int = 10)

High level description how it should work: Iterate trough services check if healthcheck is healthy. If not: wait and repeat until timeout.

testcontaners java and node has the option to wait for healthcheck. It would be nice if testcontainers-python would have the same funtionality

csikb avatar Aug 28 '22 20:08 csikb

Ideally this should work for even the DockerContainer as well.

rhoban13 avatar Jan 17 '24 19:01 rhoban13