export async function isDockerInstalled()

in src/utils/dockerUtils.ts [12:20]


export async function isDockerInstalled(): Promise<boolean> {
    try {
        await executeCommand("docker", ["-v"], { shell: true });
        return true;
    } catch (error) {
        openUrlHint("Docker is not installed, please install Docker to continue.", "https://www.docker.com");
        return false;
    }
}