From fc9286930911e408be1a2606fad8323928eac828 Mon Sep 17 00:00:00 2001 From: SethuMK Date: Wed, 16 Mar 2022 09:33:19 -0500 Subject: [PATCH] missed & in the powershellcommand --- engine/install/binaries.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/install/binaries.md b/engine/install/binaries.md index 9a5288e2fe..e910372545 100644 --- a/engine/install/binaries.md +++ b/engine/install/binaries.md @@ -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