Skip to content

What's New in Docker? Posts

How To Chat with a Local AI Model using Ollama and .NET on MacOS

Overview This guide will walk you through creating a simple chat application in .NET that interacts with a locally hosted AI model. Using the Microsoft.Extensions.AI library, you can communicate with an AI model without relying on cloud services. This provides better privacy, reduced latency, and cost efficiency. Prerequisites Install .NET 8.0 or a later version. […]

Leave a Comment

Using Ollama in Production: A Developer’s Practical Guide

As a developer who’s worked extensively with AI tools, I’ve found Ollama to be an intriguing option for production deployments. While it’s known for local development, its capabilities extend far beyond that. Let’s dive into how we can leverage Ollama in production environments and explore some real-world use cases. What Makes Ollama Production-Ready? Before we […]

Leave a Comment

How to Run LLMs Locally with Ollama

In the rapidly evolving landscape of AI development, Ollama has emerged as a game-changing tool for running Large Language Models locally. With over 43,000+ GitHub stars and 2000+ forks, Ollama has become the go-to solution for developers seeking to integrate LLMs into their local development workflow. The Rise of Ollama: By the Numbers – 43k+ […]

Leave a Comment

Integrating USB/IP into Docker Desktop is Now Possible

Docker containers provide excellent isolation for applications, but accessing physical USB devices within a container can be challenging. By leveraging the USB/IP protocol, you can share USB devices over the network and use them in Docker containers. This guide will walk you through: We’ll use USB/IP, nsenter, and Docker to facilitate USB over IP and […]

Leave a Comment

GitHub MCP Server, Docker Desktop and Claude Desktop

In today’s fast-paced dynamic developmental landscape, managing repositories and performing file operations on GitHub can often become a tedious chore. What if you could automate and simplify these tasks with just a single tool? This brings us to GitHub MCP Server. What is GitHub MCP Server? MCP is an open protocol that standardizes how applications […]

Leave a Comment

How I Reduced Docker Image Size by 90%

In today’s fast-paced DevOps landscape, every second counts. Smaller Docker images mean quicker builds, faster deployments, reduced bandwidth costs, and enhanced security. At Collabnix, we believe that optimizing your Docker images isn’t just about saving space—it’s about creating a robust, efficient, and agile deployment pipeline. Let’s dive into some practical strategies to help you create […]

Leave a Comment