From 6dc7d448c416b44c45d8c7d4165d879806d75f36 Mon Sep 17 00:00:00 2001 From: Daniel Saner Date: Mon, 5 Jan 2026 14:39:43 +0100 Subject: [PATCH] Fix list of samples in README.md The database containers sample doesn't use MongoDB, but MySQL. Fix the list of technologies used in the samples list accordingly. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ecc969622..25af3a54f 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Samples for [Aspire](https://aspire.dev). | [Integrating a Go App](./samples/container-build) | Go | Gin, Containers | Shows how to add a [Go Gin](https://gin-gonic.com/) app being built via Dockerfile to Aspire. | | [Integrating Orleans](./samples/orleans-voting) | C# | Orleans | Sample for distributed actor model integration with [Orleans](https://learn.microsoft.com/dotnet/orleans/overview). | | [Persisting Data with Volume Mounts](./samples/volume-mount) | C# | Containers, Azure Storage, SQL Server | Demonstrates using volume mounts for data persistence in containers. | -| [Working with Database Containers](./samples/database-containers) | C#, SQL | PostgreSQL, MongoDB, SQL Server | Shows how to initialize and use database containers. | +| [Working with Database Containers](./samples/database-containers) | C#, SQL | PostgreSQL, MySQL, SQL Server | Shows how to initialize and use database containers. | | [Running EF Core Migrations](./samples/database-migrations) | C# | ASP.NET Core, Entity Framework Core | Example of running [Entity Framework Core](https://learn.microsoft.com/ef/core/) migrations in Aspire apps. | | [Integrating Client Apps](./samples/client-apps-integration) | C# | Windows Forms, WPF | Demonstrates integration of Windows client apps using [Windows Forms](https://learn.microsoft.com/dotnet/desktop/winforms/overview/) or [WPF](https://learn.microsoft.com/dotnet/desktop/wpf/overview/). | | [Custom Metrics Visualization](./samples/metrics) | C# | Prometheus, Grafana | Shows how to collect and visualize custom metrics using [Grafana](https://grafana.com/). |