From 35c784b1d0133a062df16ef19d25e22508ad68bc Mon Sep 17 00:00:00 2001
From: Adrian Perez
Date: Thu, 21 May 2020 10:57:34 +0200
Subject: [PATCH] Fix: Update bind-mount image
This command will fail, as there is no existing app directory in the alpine image. We must provide the app image `getting-started` or the image from your Docker hub.
---
docs/tutorial/using-bind-mounts/index.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/tutorial/using-bind-mounts/index.md b/docs/tutorial/using-bind-mounts/index.md
index b53c403..003e177 100644
--- a/docs/tutorial/using-bind-mounts/index.md
+++ b/docs/tutorial/using-bind-mounts/index.md
@@ -41,7 +41,7 @@ So, let's do it!
```bash
docker run -dp 3000:3000 \
-w /app -v ${PWD}:/app \
- node:12-alpine \
+ getting-started \
sh -c "yarn install && yarn run dev"
```