What does Docker use to host/run web applications?

Docker is like a recipe. You take everything you need to run some code and you put it on a list. That list of ingredients is then able to be cooked anywhere that can run docker; where as a VM is like creating a new kitchen every time you need to run something. Because Docker is not creating a whole new instance of an OS, and is just running a layer above; the amount of time it takes to start a docker image is multitudes faster than a VM. This is a basic google search away, so in future it would be in your best interest to just look this up.

Leave a Comment