Add curly brackets around $PWD usage to fix powershell issues

Signed-off-by: Michael Irwin <mikesir87@gmail.com>

Resolves #7
This commit is contained in:
Michael Irwin
2020-04-15 10:35:22 -04:00
parent e3bfe08e71
commit c60bb74386
3 changed files with 5 additions and 5 deletions

View File

@@ -169,7 +169,7 @@ With all of that explained, let's start our dev-ready container!
```bash hl_lines="3 4 5 6 7"
docker run -dp 3000:3000 \
-w /app -v $PWD:/app \
-w /app -v ${PWD}:/app \
--network todo-app \
-e MYSQL_HOST=mysql \
-e MYSQL_USER=root \