File: StorageEmulatorContainerImageTags.cs
Web Access
Project: src\src\Aspire.Hosting.Azure.Storage\Aspire.Hosting.Azure.Storage.csproj (Aspire.Hosting.Azure.Storage)
// 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.Azure.Storage;
 
internal static class StorageEmulatorContainerImageTags
{
    /// <summary>mcr.microsoft.com</summary>
    public const string Registry = "mcr.microsoft.com";
 
    /// <summary>azure-storage/azurite</summary>
    public const string Image = "azure-storage/azurite";
 
    /// <summary>3.32.0</summary>
    public const string Tag = "3.32.0";
}