Hi I have a minor windows related error where when I want to execute:
docker run -d -p 5001:3000 -v $(pwd):/app --name c2 react-app
it throws the following error:
`````docker: Error response from daemon: create (pwd): "(pwd)" includes invalid characters for a local volume name, only “[a-zA-Z0-9][a-zA-Z0-9_.-]” are allowed. If you intended to pass a host directory, use absolute path.
See ‘docker run --help’.
so because I am on windows I used:
docker run -d -p 5001:3000 -v %cd%:/app --name c1 react-app
which actually works and also updates the code in the container, but sadly the react app does not get updated. While the title changes in the container file, which I verified with `“cat index.html” it does not update the title in my chrome and firefox browser. I tried refreshing. It updates when I restart the container. This likely has a simple fix or maybe a workarround - so if you managed to fix it I would be glad for your help
Justin
PS: I tried changing %cd% with other commands - looks like the only way is to trigger hot reload on app but no idea how