Skip to main content
  1. Categories/

Docker

Build Custom MCP Catalogs with Docker: Enterprise Control for AI Tooling

Update Tools & SDKs · Oct 24, 2025 · 2 min read
Docker shipped a set of tools that let a platform team decide exactly which Model Context Protocol servers developers can run: a catalog format, an open-source Gateway, and a Toolkit built into Docker Desktop. The official catalog carries 220+ containerized MCP servers, and you can fork it, trim it, or build a private catalog that points at images in your own registry.
Build Custom MCP Catalogs with Docker: Enterprise Control for AI Tooling

Deploying Ollama with Open WebUI Locally: A Step-by-Step Guide

Deep Dive Docker · Jan 11, 2025 · 8 min read
I run LLMs on my own machine for two reasons: my prompts never leave my hardware, and I can experiment all day without watching an API meter. The setup used to be the hard part. Wrangling Python environments, CUDA drivers, and model weights by hand was enough friction that most people quit before the first token.
Deploying Ollama with Open WebUI Locally: A Step-by-Step Guide

Seeding Initial Data Using Docker Compose and SQL Scripts

Deep Dive .NET · Dec 1, 2024 · 6 min read
Introduction # Nothing kills momentum on a new project like cloning the repo, running docker compose up, and landing on an empty database. No roles, no permissions, no login, so nothing works until someone reads the wiki and hand-runs a SQL script. On the Contact Management Application I wanted docker compose up to be the whole setup: containers come up, the schema seeds itself, and you can log in.
Seeding Initial Data Using Docker Compose and SQL Scripts

Dockerizing the .NET Core API, Angular and MS SQL Server

Deep Dive .NET · Dec 1, 2024 · 10 min read
Getting the Contact Management Application running used to mean installing the .NET SDK, Node, and a local SQL Server, then hoping the versions matched mine. That is three toolchains of setup before anyone sees a login page. Containerizing the stack collapses all of it into docker-compose up --build: the API, the Angular frontend, SQL Server, and an nginx load balancer come up together, wired the same way on every machine. This post walks through the Dockerfiles and compose files that make that work, including the parts I would do differently today.
Dockerizing the .NET Core API, Angular and MS SQL Server

Pushing Docker Image to Docker Hub

Deep Dive Docker · Jul 22, 2023 · 4 min read
A custom image that only exists on your laptop is not shipped; it is a local experiment. The moment a teammate or a server needs to run it, the image has to live in a registry. Docker Hub is the one most people start with, and the push workflow is the same shape you will later use against Azure Container Registry or Amazon ECR, so it is worth doing once by hand before automating it. This post walks through that manual path with a small nginx-based image.
Pushing Docker Image to Docker Hub

Pushing Custom Images to Docker Hub Using GitHub Actions

Deep Dive Docker · Jul 22, 2023 · 4 min read
In the previous article I built a custom nginx image and pushed it to Docker Hub by hand: build, tag, login, push. That works exactly once. The second time you forget the tag, the third time a teammate pushes from a laptop with a stale base image, and soon nobody can say which commit produced the image running in production. The fix is boring and reliable: let GitHub Actions do the build and push on every commit to master.
Pushing Custom Images to Docker Hub Using GitHub Actions