I'm actually trying to build a dev environment with Docker. So I'm trying to share a folder between my running container and my host system (windows 7).
To run my container I'm using this :
docker run -d -P -v /c/project/webproject:/usr/src/app chris/node-web-app
This command "works well" and I got the container's ID, but I don't know why my container is stopped. I'm just able to see it by running :
docker ps -a
I started Docker last weekend during a workshop for its third birthday, so any help will be very useful. Thank you