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.
This commit is contained in:
Adrian Perez 2020-05-21 10:57:34 +02:00 committed by GitHub
parent 6652785552
commit 35c784b1d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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