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 { /// <summary>docker.io</summary> public const string Registry = "docker.io"; /// <summary>library/nats</summary> public const string Image = "library/nats"; /// <summary>2.10</summary> public const string Tag = "2.10"; } |