Logins may be showing incorrect profile information. Please email psgadmin at microsoft.com for support.
Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
psdocker
1.0.18
Public/Install-Image.ps1
function
Install-Image
{
param
(
[
ValidateNotNullOrEmpty
(
)
]
[string]
$Image
)
Invoke-ClientCommand
"pull"
,
$Image
Write-Debug
"Docker image '$Image' pulled."
}