13 references to WithImageTag
Aspire.Hosting.Azure.Tests (3)
AzureCosmosDBExtensionsTests.cs (1)
47container.WithImageTag(imageTag);
AzureEventHubsExtensionsTests.cs (1)
252container.WithImageTag(imageTag);
AzureServiceBusExtensionsTests.cs (1)
287container.WithImageTag(imageTag);
Aspire.Hosting.Containers.Tests (2)
ContainerResourceBuilderTests.cs (1)
57var redis = builder.AddContainer("redis", "redis").WithImageTag("7.1");
WithDockerfileTests.cs (1)
157dockerFile.WithImageTag("latest");
Aspire.Hosting.MongoDB.Tests (1)
AddMongoDBTests.cs (1)
115c.WithImageTag("someothertag");
Aspire.Hosting.PostgreSQL.Tests (2)
AddPostgresTests.cs (2)
408c.WithImageTag("someothertag"); 436builder.AddPostgres("mypostgres").WithPgAdmin(pga => pga.WithImageTag("8.3"));
Aspire.Hosting.RabbitMQ.Tests (2)
AddRabbitMQTests.cs (2)
131rabbitmq.WithImageTag(imageTag); 159rabbitmq.WithImageTag(imageTag);
Aspire.Hosting.Redis.Tests (2)
AddRedisTests.cs (2)
265c.WithImageTag("someothertag"); 283c.WithImageTag("someothertag");
PostgresEndToEnd.AppHost (1)
Program.cs (1)
16var pg6 = builder.AddPostgres("pg6").WithPgAdmin(c => c.WithHostPort(8999).WithImageTag("8.3")).PublishAsContainer();