Skip to main content
  1. Categories/

Docker

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

Quick Takes · Oct 24, 2025 · 5 min read
Docker has introduced comprehensive MCP (Model Context Protocol) tooling that enables organizations to build custom catalogs with complete control over AI tool access. With over 220+ containerized MCP servers available and the ability to create private catalogs, enterprises can now deploy AI tooling with appropriate security guardrails.
Build Custom MCP Catalogs with Docker: Enterprise Control for AI Tooling

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

Deep Dive · Jan 11, 2025 · 9 min read
Introduction # Large Language Models (LLMs) have become a cornerstone of modern AI applications, from chatbots that provide customer support to content generation tools for images and videos. They power virtual assistants, automated translation systems, and personalized recommendation engines, showcasing their versatility across industries. However, running these models on a local machine has traditionally been a complex and resource-intensive task, requiring significant configuration and technical expertise. This complexity often deters beginners and even intermediate users who are eager to explore the capabilities of LLMs in a private, local environment.
Deploying Ollama with Open WebUI Locally: A Step-by-Step Guide

Seeding Initial Data Using Docker Compose and SQL Scripts

Deep Dive · Dec 1, 2024 · 7 min read
Introduction # When setting up a new application, especially in development and testing environments, having a consistent and repeatable process for initializing your database with essential data is crucial. This article explores how the Contact Management Application uses Docker Compose and SQL scripts to automate the seeding process, ensuring that every instance of the application starts with the necessary baseline data.
Seeding Initial Data Using Docker Compose and SQL Scripts

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

Deep Dive · Dec 1, 2024 · 10 min read
Introduction # Docker has revolutionized application deployment by enabling consistent environments across development, testing, and production. In Clean Architecture, containerization aligns perfectly with the separation of concerns principle, allowing each layer to be independently developed and deployed. This article explores how to Dockerize the Contact Management Application’s .NET Core API and MS SQL Server database.
Dockerizing the .NET Core API, Angular and MS SQL Server

Pushing Docker Image to Docker Hub

Deep Dive · Jul 22, 2023 · 4 min read
Introduction # Docker Hub is a cloud-based repository service for container images, allowing developers to store, share, and manage their Docker images. This article provides a step-by-step guide to building Docker images and pushing them to Docker Hub, making your containerized applications accessible to your team or the wider community.
Pushing Docker Image to Docker Hub

Pushing Custom Images to Docker Hub Using GitHub Actions

Deep Dive · Jul 22, 2023 · 4 min read
Introduction # Automating Docker image builds and deployments can significantly improve development workflows. This article demonstrates how to use GitHub Actions to automatically build and push Docker images to Docker Hub whenever changes are committed to your repository, saving time and ensuring consistent builds across your team.
Pushing Custom Images to Docker Hub Using GitHub Actions