I've been trying to move my node.js dev environment to a docker container. There's just one concern I have right now. I'm currently running gulp to watch changes in my files and do a rebuild, nodemon for restarting the node server on file changes and some other gulp task ("gulp test") to run my unit tests with karma. How can I run multiple processes from a docker container so that I can easily run tests and have both gulp and nodemon running?
I'd appreciate a nudge in the right direction