Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
Docker-CI
0.5.0
Private/Find-DockerOSType.ps1
function
Find-DockerOSType
{
$commandResult
=
Invoke-Command
"docker info --format '{{.OSType}}'"
Assert-ExitCodeOk
$commandResult
$commandResult
.
Output
}