Back to all

infrastructure-validator

by Jamie Ter Beest

00Feb 7, 2026Visit 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()