mirror of https://github.com/docker/docs.git
Added PowerShell sample
This commit is contained in:
parent
bcf94bec0a
commit
88c50106f7
9
test.md
9
test.md
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue