Merge pull request #14397 from SethuMK/patch-2

missed & in the powershellcommand
This commit is contained in:
Usha Mandya 2022-04-01 10:31:04 +01:00 committed by GitHub
commit 19de201738
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -224,7 +224,7 @@ To install server and client binaries, perform the following steps:
3. Register the service and start the Docker Engine:
```powershell
PS C:\> $Env:ProgramFiles\Docker\dockerd --register-service
PS C:\> &$Env:ProgramFiles\Docker\dockerd --register-service
PS C:\> Start-Service docker
```
@ -232,7 +232,7 @@ To install server and client binaries, perform the following steps:
image.
```powershell
PS C:\> $Env:ProgramFiles\Docker\docker run hello-world:nanoserver
PS C:\> &$Env:ProgramFiles\Docker\docker run hello-world:nanoserver
```
This command downloads a test image and runs it in a container. When the