File: NatsContainerImageTags.cs | Web Access |
Project: src\src\Aspire.Hosting.Nats\Aspire.Hosting.Nats.csproj (Aspire.Hosting.Nats) |
// 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.Nats; internal static class NatsContainerImageTags { /// <remarks>docker.io</remarks> public const string Registry = "docker.io"; /// <remarks>library/nats</remarks> public const string Image = "library/nats"; /// <remarks>2.10</remarks> public const string Tag = "2.10"; } |