Update style inconsistencies for code prompts in get-started (#13580)

* Fix style inconsistencies for powershell code in get-started

* Fix style inconsistencies for powershell code in get-started
This commit is contained in:
rolyli
2021-10-04 10:51:23 +01:00
committed by GitHub
parent 2db1c23afe
commit a0e59a68b0
2 changed files with 5 additions and 5 deletions

View File

@@ -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"

View File

@@ -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 `