im Starting a Dev-Mode Container in docker. the documentation says this line
docker run -dp 3000:3000 -w /app -v $PWD:/app node:10-alpine sh -c "yarn install && yarn run dev"
however this might be for linux im on windows. the rest of the internet are suggesting this
docker run -dp 3000:3000 -w /app -v "%cd%:/app" node:10-alpine sh -c "yarn install && yarn run dev"
this does not return any sort of error just a complicated load of letters and numbers (probably some kind of object or w/e its in the screenshot)
however docker ps suggests nothing is running, no containers are open. also when i open up docker desktop app i can see each time i run the line above i do create a new container it just dies straight away.
im not doing anything special, why does that container crash on opening? i just want it to run normal.
what further info would be useful?
###################################### edit
following the advice of printing the logs i see that my app cannot find a file. however this leaves me more confused because as the screenshot shows, docker is looking in the right place and the files really are there.