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