Check if Docker is installed (may not be running). Returns: True if Docker executable is found, False otherwise
()
| 27 | |
| 28 | |
| 29 | def is_docker_installed() -> bool: |
| 30 | """Check if Docker is installed (may not be running). |
| 31 | |
| 32 | Returns: |
| 33 | True if Docker executable is found, False otherwise |
| 34 | """ |
| 35 | return find_docker_executable() is not None |
| 36 | |
| 37 | |
| 38 | def attempt_start_docker() -> tuple[bool, str]: |
no test coverage detected