missed & in the powershellcommand

This commit is contained in:
SethuMK 2022-03-16 09:33:19 -05:00 committed by GitHub
parent b5e2c6f603
commit fc92869309
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