From b0dc95cd626d1cd7f7582307d693fd72a27280ce Mon Sep 17 00:00:00 2001 From: Craig Osterhout <103533812+craig-osterhout@users.noreply.github.com> Date: Wed, 27 Jul 2022 13:04:46 -0700 Subject: [PATCH] specified x86-64 arch, made wording more consistent, and changed codeblock to console (#15184) --- get-started/06_bind_mounts.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/get-started/06_bind_mounts.md b/get-started/06_bind_mounts.md index d18d82815f..237375895d 100644 --- a/get-started/06_bind_mounts.md +++ b/get-started/06_bind_mounts.md @@ -40,7 +40,9 @@ So, let's do it! 1. Make sure you don't have any previous `getting-started` containers running. -2. Run the following command from the app directory. We'll explain what's going on afterwards: +2. Run the following command from the app directory. We'll explain what's going on afterwards. + + If you are using an x86-64 Mac or Linux device, then use the following command. ```console $ docker run -dp 3000:3000 \ @@ -49,7 +51,7 @@ So, let's do it! sh -c "yarn install && yarn run dev" ``` - If you are using Windows then use this command in PowerShell: + If you are using Windows, then use the following command in PowerShell. ```powershell PS> docker run -dp 3000:3000 ` @@ -60,7 +62,7 @@ So, let's do it! If you are using an Apple silicon Mac or another ARM64 device, then use the following command. - ```bash + ```console $ docker run -dp 3000:3000 \ -w /app -v "$(pwd):/app" \ node:12-alpine \