I am following the tutorial here: Part 5: Use bind mounts | Docker Docs
I tried entering this command:
docker run -dp 3000:3000 \
-w /app -v "$(pwd):/app" \
node:12-alpine \
sh -c "yarn install && yarn run dev"
Although I can see see the image on the dashboard - very time I try to start it, it crashes/cuts out and I can’t follow on to the next step.
anyone know why this might be happing.