File: ElasticsearchContainerImageTags.cs | Web Access |
Project: src\src\Aspire.Hosting.Elasticsearch\Aspire.Hosting.Elasticsearch.csproj (Aspire.Hosting.Elasticsearch) |
// 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 { /// <summary>docker.io</summary> public const string Registry = "docker.io"; /// <summary>library/elasticsearch</summary> public const string Image = "library/elasticsearch"; /// <summary>8.15.3</summary> public const string Tag = "8.15.3"; } |