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
I don't know if this is too late. But the correct way to do this is to catch the SIGINT (interrupt signal in your javascript).
var process = require('process') process.on('SIGINT', () => { console.info("Interrupted") process.exit(0) })
This should do the trick when you press Ctrl+C