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. ...

February 24, 2026 · 7 min

Lowering Setup Cost With Containers

Docker changed what I consider worth setting up. Without containers, trying new software usually means committing to an environment: Pick an OS. Install dependencies. Open ports. Configure access. Hope you remember what you did the next time you come back. Even when the goal is just to try something, the setup feels heavier than the thing you’re actually interested in. The cost in time adds up, now you’re more hesitant to fire up the service or tool. ...

January 28, 2026 · 2 min