Docker - Let's containerize the application



I started learning the Docker and successfully able to implement first application that I can run in a docker container

Docker helps to containerize your application with all its dependencies as one package which is a docker image and that can shipped to various environments and run as containers

This way we don't need to worry about dependecy versions across the environments and the application running on a developer machine can work on any machine.

Below is my github repo that has this application along with steps for implementation in ReadMe file.

Docker- The Container

Hope this can help anyone who is beginning their journey in Containers especially Docker

Thank you.