What Actually Happens Between docker build and a Running Server
The first time I ever built a Docker image, it worked. The container started, port mapped, and the app responded in the browser. But if I’m being honest, I couldn’t clearly explain what happened between docker build and seeing that response. I understood the commands, but I did not fully understand the flow. In this write-up, I will walkthrough a small application from source code to a running container on a remote server and explain what is happening at each stage. ...