Merge pull request #1882 from thaJeztah/19.03_backport_fix_powershell_codehint

[19.03 backport] Fix PowerShell codehint for rouge
This commit is contained in:
Sebastiaan van Stijn 2019-05-13 17:49:29 -07:00 committed by GitHub
commit cb07256868
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 12 deletions

View File

@ -812,7 +812,7 @@ Defaults to 20G.
###### Example ###### Example
```PowerShell ```powershell
C:\> dockerd --storage-opt size=40G C:\> dockerd --storage-opt size=40G
``` ```
@ -827,7 +827,7 @@ deployments).
###### Example ###### Example
```PowerShell ```powershell
C:\> dockerd --storage-opt lcow.globalmode=false C:\> dockerd --storage-opt lcow.globalmode=false
``` ```
@ -838,7 +838,7 @@ used for booting a utility VM. Defaults to `%ProgramFiles%\Linux Containers`.
###### Example ###### Example
```PowerShell ```powershell
C:\> dockerd --storage-opt lcow.kirdpath=c:\path\to\files C:\> dockerd --storage-opt lcow.kirdpath=c:\path\to\files
``` ```
@ -849,7 +849,7 @@ Defaults to `bootx64.efi`.
###### Example ###### Example
```PowerShell ```powershell
C:\> dockerd --storage-opt lcow.kernel=kernel.efi C:\> dockerd --storage-opt lcow.kernel=kernel.efi
``` ```
@ -860,7 +860,7 @@ Defaults to `initrd.img`.
###### Example ###### Example
```PowerShell ```powershell
C:\> dockerd --storage-opt lcow.initrd=myinitrd.img C:\> dockerd --storage-opt lcow.initrd=myinitrd.img
``` ```
@ -872,7 +872,7 @@ are kernel specific.
###### Example ###### Example
```PowerShell ```powershell
C:\> dockerd --storage-opt "lcow.bootparameters='option=value'" C:\> dockerd --storage-opt "lcow.bootparameters='option=value'"
``` ```
@ -883,7 +883,7 @@ and initrd booting. Defaults to `uvm.vhdx` under `lcow.kirdpath`.
###### Example ###### Example
```PowerShell ```powershell
C:\> dockerd --storage-opt lcow.vhdx=custom.vhdx C:\> dockerd --storage-opt lcow.vhdx=custom.vhdx
``` ```
@ -894,7 +894,7 @@ to 300.
###### Example ###### Example
```PowerShell ```powershell
C:\> dockerd --storage-opt lcow.timeout=240 C:\> dockerd --storage-opt lcow.timeout=240
``` ```
@ -905,7 +905,7 @@ containers. Defaults to 20. Cannot be less than 20.
###### Example ###### Example
```PowerShell ```powershell
C:\> dockerd --storage-opt lcow.sandboxsize=40 C:\> dockerd --storage-opt lcow.sandboxsize=40
``` ```

View File

@ -753,7 +753,7 @@ operating system older than Windows 10 1809 with `--isolation process` will fail
On Windows server, assuming the default configuration, these commands are equivalent On Windows server, assuming the default configuration, these commands are equivalent
and result in `process` isolation: and result in `process` isolation:
```PowerShell ```powershell
PS C:\> docker run -d microsoft/nanoserver powershell echo process PS C:\> docker run -d microsoft/nanoserver powershell echo process
PS C:\> docker run -d --isolation default microsoft/nanoserver powershell echo process PS C:\> docker run -d --isolation default microsoft/nanoserver powershell echo process
PS C:\> docker run -d --isolation process microsoft/nanoserver powershell echo process PS C:\> docker run -d --isolation process microsoft/nanoserver powershell echo process
@ -763,7 +763,7 @@ If you have set the `--exec-opt isolation=hyperv` option on the Docker `daemon`,
are running against a Windows client-based daemon, these commands are equivalent and are running against a Windows client-based daemon, these commands are equivalent and
result in `hyperv` isolation: result in `hyperv` isolation:
```PowerShell ```powershell
PS C:\> docker run -d microsoft/nanoserver powershell echo hyperv PS C:\> docker run -d microsoft/nanoserver powershell echo hyperv
PS C:\> docker run -d --isolation default microsoft/nanoserver powershell echo hyperv PS C:\> docker run -d --isolation default microsoft/nanoserver powershell echo hyperv
PS C:\> docker run -d --isolation hyperv microsoft/nanoserver powershell echo hyperv PS C:\> docker run -d --isolation hyperv microsoft/nanoserver powershell echo hyperv

View File

@ -1433,7 +1433,7 @@ today=Wednesday
HOME=/root HOME=/root
``` ```
```PowerShell ```powershell
PS C:\> docker run --rm -e "foo=bar" microsoft/nanoserver cmd /s /c set PS C:\> docker run --rm -e "foo=bar" microsoft/nanoserver cmd /s /c set
ALLUSERSPROFILE=C:\ProgramData ALLUSERSPROFILE=C:\ProgramData
APPDATA=C:\Users\ContainerAdministrator\AppData\Roaming APPDATA=C:\Users\ContainerAdministrator\AppData\Roaming