File: src\Aspire.Hosting.Elasticsearch\ElasticsearchContainerImageTags.cs
Web Access
Project: src\tests\Aspire.Elastic.Clients.Elasticsearch.Tests\Aspire.Elastic.Clients.Elasticsearch.Tests.csproj (Aspire.Elastic.Clients.Elasticsearch.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.Elasticsearch;
 
internal static class ElasticsearchContainerImageTags
{
    /// <remarks>docker.io</remarks>
    public const string Registry = "docker.io";
 
    /// <remarks>library/elasticsearch</remarks>
    public const string Image = "library/elasticsearch";
 
    /// <remarks>8.17.0</remarks>
    public const string Tag = "8.17.0";
}