Private/Find-DockerOSType.ps1

function Find-DockerOSType {
    $commandResult = Invoke-DockerCommand 'info --format "{{.OSType}}"'
    Assert-ExitCodeOk $commandResult
    return $commandResult.Output
}