| File: KafkaContainerImageTags.cs | Web Access |
| Project: src\src\Aspire.Hosting.Kafka\Aspire.Hosting.Kafka.csproj (Aspire.Hosting.Kafka) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Aspire.Hosting; internal static class KafkaContainerImageTags { /// <remarks>docker.io</remarks> public const string Registry = "docker.io"; /// <remarks>confluentinc/confluent-local</remarks> public const string Image = "confluentinc/confluent-local"; /// <remarks>8.2.0</remarks> public const string Tag = "8.2.0"; /// <remarks>kafbat/kafka-ui</remarks> public const string KafkaUiImage = "kafbat/kafka-ui"; /// <remarks>v1.5.0</remarks> public const string KafkaUiTag = "v1.5.0"; }