16 references to WithImageTag
Aspire.Hosting (2)
ContainerResourceBuilderExtensions.cs (2)
44.WithImageTag(tag); 494.WithImageTag(imageTag);
Aspire.Hosting.Azure.Tests (3)
AzureCosmosDBExtensionsTests.cs (1)
50container.WithImageTag(imageTag);
AzureEventHubsExtensionsTests.cs (1)
266container.WithImageTag(imageTag);
AzureServiceBusExtensionsTests.cs (1)
183container.WithImageTag(imageTag);
Aspire.Hosting.Containers.Tests (3)
ContainerResourceBuilderTests.cs (2)
57var redis = builder.AddContainer("redis", "redis").WithImageTag("7.1"); 83var exception = Assert.Throws<InvalidOperationException>(() => container.WithImageTag("7.1"));
WithDockerfileTests.cs (1)
157dockerFile.WithImageTag("latest");
Aspire.Hosting.Keycloak (1)
KeycloakResourceBuilderExtensions.cs (1)
63.WithImageTag(KeycloakContainerImageTags.Tag)
Aspire.Hosting.MongoDB.Tests (1)
AddMongoDBTests.cs (1)
115c.WithImageTag("someothertag");
Aspire.Hosting.PostgreSQL.Tests (2)
AddPostgresTests.cs (2)
407c.WithImageTag("someothertag"); 435builder.AddPostgres("mypostgres").WithPgAdmin(pga => pga.WithImageTag("8.3"));
Aspire.Hosting.RabbitMQ.Tests (2)
AddRabbitMQTests.cs (2)
136rabbitmq.WithImageTag(imageTag); 164rabbitmq.WithImageTag(imageTag);
Aspire.Hosting.Redis.Tests (2)
AddRedisTests.cs (2)
375c.WithImageTag("someothertag"); 393c.WithImageTag("someothertag");