I was following the tutorial using "Docker Desktop for Windows" and received the following exception on execution of the "docker run..." command:
docker run -dp 3000:3000 -w /app -v "$(pwd):/app" node:12-alpine sh -c "yarn install && yarn run dev"
docker: Error response from daemon: status code not OK but 500: ���� FDocker.Core, Version=3.0.0.50646, Culture=neutral, PublicKeyToken=null ocker.Core.DockerException WatsonBuckets System.Collections.IDictionarySystem.Excepti ocker.Core.DockerException Filesharing has been cancelled
Adding the base-path as a shared resource to the docker configuration solved the problem.
Signed-off-by: mikesir87 <mikesir87@gmail.com>
Imported from dockersamples/101-tutorial, removed other languages
for now, and replaced PWD references with Docker Desktop.