Hey I am new to Docker and following the docker documentation to learn it. However, I have come across this error while trying to use bind mount as specified https://docs.docker.com/get-started/06_bind_mounts/ and I am using Windows 10 Professional. The code I have run is found below as I have changed the pwd to that of mine.
docker run -dp 3000:3000 `
-w /app -v "$(pwd):/app" `
node:18-alpine `
sh -c "yarn install && yarn run dev"