File: QdrantContainerImageTags.cs
Web Access
Project: src\src\Aspire.Hosting.Qdrant\Aspire.Hosting.Qdrant.csproj (Aspire.Hosting.Qdrant)
// 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";
}