diff --git a/get-started/06_bind_mounts.md b/get-started/06_bind_mounts.md index 79ea87ddcd..741f2ea978 100644 --- a/get-started/06_bind_mounts.md +++ b/get-started/06_bind_mounts.md @@ -52,7 +52,7 @@ So, let's do it! If you are using PowerShell then use this command: ```powershell - docker run -dp 3000:3000 ` + PS> docker run -dp 3000:3000 ` -w /app -v "$(pwd):/app" ` node:12-alpine ` sh -c "yarn install && yarn run dev" diff --git a/get-started/08_using_compose.md b/get-started/08_using_compose.md index 62af7e919f..048aeb9ae1 100644 --- a/get-started/08_using_compose.md +++ b/get-started/08_using_compose.md @@ -65,10 +65,10 @@ $ docker run -dp 3000:3000 \ sh -c "yarn install && yarn run dev" ``` -If you are using PowerShell then use this command. +If you are using PowerShell then use this command: ```powershell -docker run -dp 3000:3000 ` +PS> docker run -dp 3000:3000 ` -w /app -v "$(pwd):/app" ` --network todo-app ` -e MYSQL_HOST=mysql ` @@ -171,10 +171,10 @@ $ docker run -d \ mysql:5.7 ``` -If you are using PowerShell then use this command. +If you are using PowerShell then use this command: ```powershell -docker run -d ` +PS> docker run -d ` --network todo-app --network-alias mysql ` -v todo-mysql-data:/var/lib/mysql ` -e MYSQL_ROOT_PASSWORD=secret `