How to Share Volumes Between Docker Containers

How to Share Volumes Between Docker Containers

In this blog post How to Share Volumes Between Docker Containers Safely and Reliably we will walk through the cleanest ways to share files and state between containers, why it works, and how to avoid common pitfalls. At a high level, Docker volumes let multiple...
Keep .NET App Running in Docker

Keep .NET App Running in Docker

In this blog post Keep .NET App Running in Docker we will walk through how to containerise a .NET application, start it automatically when the container launches, and keep it running reliably. Containers shine when you want consistent, repeatable runtime environments....
Keep Docker Containers Running: Prevent Common Exits

Keep Docker Containers Running: Prevent Common Exits

In this blog post Keep Docker Containers Running Prevent Exits in Production and Dev we will walk through why Docker containers exit and the reliable ways to keep them running. At a high level, a container runs a single main process. When that process finishes, the...
Use Dev Containers for .NET Development

Use Dev Containers for .NET Development

In this blog post, we’ll show you how to use Dev Containers for .NET development. Table of contentsWhy Use Dev Containers?RequirementsGetting StartedDevelopment in a Dev ContainerSummary The VS Code Dev Containers extension allows you to develop .NET and other...