From 9a1cb6561c89559d7b85f6714d0ddc4d4cc27e15 Mon Sep 17 00:00:00 2001 From: craig-osterhout Date: Wed, 11 May 2022 11:11:16 -0700 Subject: [PATCH] fix for issue 14686 and 12662 Signed-off-by: craig-osterhout --- get-started/06_bind_mounts.md | 2 +- get-started/07_multi_container.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/get-started/06_bind_mounts.md b/get-started/06_bind_mounts.md index 3b0aef5be1..55a568daff 100644 --- a/get-started/06_bind_mounts.md +++ b/get-started/06_bind_mounts.md @@ -49,7 +49,7 @@ So, let's do it! sh -c "yarn install && yarn run dev" ``` - If you are using PowerShell then use this command: + If you are using Windows then use this command in PowerShell: ```powershell PS> docker run -dp 3000:3000 ` diff --git a/get-started/07_multi_container.md b/get-started/07_multi_container.md index 6828dc33aa..1d887e2a90 100644 --- a/get-started/07_multi_container.md +++ b/get-started/07_multi_container.md @@ -66,7 +66,7 @@ For now, we will create the network first and attach the MySQL container at star mysql:5.7 ``` - If you are using PowerShell then use this command. + If you are using Windows then use this command in PowerShell. ```powershell PS> docker run -d ` @@ -214,7 +214,7 @@ With all of that explained, let's start our dev-ready container! sh -c "yarn install && yarn run dev" ``` - If you are using PowerShell then use this command. + If you are using Windows then use this command in PowerShell. ```powershell PS> docker run -dp 3000:3000 `