Added PowerShell sample

This commit is contained in:
Steven Follis 2019-02-06 17:45:17 -05:00
parent bcf94bec0a
commit 88c50106f7
1 changed files with 9 additions and 0 deletions

View File

@ -709,6 +709,15 @@ incoming := map[string]interface{}{
}
```
### PowerShell
```powershell
Install-Module DockerMsftProvider -Force
Install-Package Docker -ProviderName DockerMsftProvider -Force
[System.Environment]::SetEnvironmentVariable("DOCKER_FIPS", "1", "Machine")
Expand-Archive docker-18.09.1.zip -DestinationPath $Env:ProgramFiles -Force
```
### Python
```python