File: ValkeyContainerImageTags.cs
Web Access
Project: src\src\Aspire.Hosting.Valkey\Aspire.Hosting.Valkey.csproj (Aspire.Hosting.Valkey)
// 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.Valkey;
 
internal static class ValkeyContainerImageTags
{
    /// <summary>docker.io</summary>
    public const string Registry = "docker.io";
 
    /// <summary>valkey/valkey</summary>
    public const string Image = "valkey/valkey";
 
    /// <summary>8.0</summary>
    public const string Tag = "8.0";
}