Docker Shell Tricks

Overview One of my all time favorite tricks when working with Docker. Getting information on or performing an action on multiple containers with similar naming schemes. Passing the –filter name= flag allows for fuzzy matching. docker container ps -q returns only container ids by default and is perfect for combining with commands like docker container stop or docker container rm. Of course if you are using docker compose, simply running docker compose down will accomplish the same thing. ...

June 18, 2025 · 3 min · 571 words · Mike Conrad

Quickly Convert Webflow to Static Site

I recently ran into a situation where a small site that I help manage went offline. I got the dreaded text on a Sunday morning as I was on my way to a coffee shop to focus on some side projects. The site is built/hosted on Webflow so my first suspicion was a billing issue. As soon as I got to the coffee sshop I logged into the Webflow dashboard to find out what was going on. ...

February 23, 2025 · 5 min · 879 words · Mike Conrad