How can I create a Dockerfile that runs both my nodeJS server and also launches mongodb? All in the same container
I need to be able to run within the same container both: my nodejs server.js and mongodb. I know it is possible to achieve this with docker-compose or with two separate containers but that is not an option here. I…