MuleRun
Chat
Resources
Pricing
Back to all
infrastructure-validator
by
Jamie Ter Beest
Run
0
0
Feb 7, 2026
Visit Source
def check_containers(self): """Verify Docker containers are healthy""" result = subprocess.run( ["docker-compose", "ps"], capture_output=True ) return "healthy" in result.stdout.decode()