How could we containerize a nodejs application with docker.....Let's See....
Refer this video for a hands on guide: https://www.youtube.com/watch?v=pqsC1AcuQkU
First clone the project Then run :
npm installthen you can build the image with :
docker build -t image-name .Its time to run the container! run:
docker run -it -p 5000:3000Now head over to http://localhost:5000 to see the magic happen!
AWESOME!