File: src\Aspire.Hosting.Qdrant\QdrantContainerImageTags.cs | Web Access |
Project: src\tests\Aspire.Hosting.Qdrant.Tests\Aspire.Hosting.Qdrant.Tests.csproj (Aspire.Hosting.Qdrant.Tests) |
// 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.Qdrant; internal static class QdrantContainerImageTags { /// <summary>docker.io</summary> public const string Registry = "docker.io"; /// <summary>qdrant/qdrant</summary> public const string Image = "qdrant/qdrant"; /// <summary>v1.12.1</summary> public const string Tag = "v1.12.1"; } |