11 references to WithImageTag
Aspire.Hosting.Azure.Tests (2)
AzureEventHubsExtensionsTests.cs (1)
197container.WithImageTag(imageTag);
AzureResourceExtensionsTests.cs (1)
169container.WithImageTag(imageTag);
Aspire.Hosting.Containers.Tests (1)
ContainerResourceBuilderTests.cs (1)
57var redis = builder.AddContainer("redis", "redis").WithImageTag("7.1");
Aspire.Hosting.MongoDB.Tests (1)
AddMongoDBTests.cs (1)
115c.WithImageTag("someothertag");
Aspire.Hosting.PostgreSQL.Tests (2)
AddPostgresTests.cs (2)
405c.WithImageTag("someothertag"); 433builder.AddPostgres("mypostgres").WithPgAdmin(pga => pga.WithImageTag("8.3"));
Aspire.Hosting.RabbitMQ.Tests (2)
AddRabbitMQTests.cs (2)
132rabbitmq.WithImageTag(imageTag); 160rabbitmq.WithImageTag(imageTag);
Aspire.Hosting.Redis.Tests (2)
AddRedisTests.cs (2)
150c.WithImageTag("someothertag"); 168c.WithImageTag("someothertag");
PostgresEndToEnd.AppHost (1)
Program.cs (1)
16var pg6 = builder.AddPostgres("pg6").WithPgAdmin(c => c.WithHostPort(8999).WithImageTag("8.3")).PublishAsContainer();