I have just installed dockers and installed node. I am able to run a basic express site. My issue now is I can\'t stop it. Control-C is not doing anything.
Temporarily w
As described here: github: docker-node best practice
You can add the --init flag to your docker run command.
--init
docker run -it --init -p 3000:3000 --name nodetest mynodeimage