File: src\Aspire.Hosting.MySql\MySqlContainerImageTags.cs
Web Access
Project: src\tests\Aspire.MySqlConnector.Tests\Aspire.MySqlConnector.Tests.csproj (Aspire.MySqlConnector.Tests)
// 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.MySql;
 
internal static class MySqlContainerImageTags
{
    public const string Registry = "docker.io";
    public const string Image = "library/mysql";
    public const string Tag = "9.0";
 
    public const string PhpMyAdminImage = "library/phpmyadmin";
    public const string PhpMyAdminTag = "5.2";
}