File: src\Aspire.Hosting.MongoDB\MongoDBContainerImageTags.cs
Web Access
Project: src\tests\Aspire.MongoDB.Driver.Tests\Aspire.MongoDB.Driver.Tests.csproj (Aspire.MongoDB.Driver.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.MongoDB;
 
internal static class MongoDBContainerImageTags
{
    public const string Registry = "docker.io";
    public const string Image = "library/mongo";
    public const string Tag = "7.0";
    public const string MongoExpressRegistry = "docker.io";
    public const string MongoExpressImage = "library/mongo-express";
    public const string MongoExpressTag = "1.0";
}