Replace container image name
Recipe ID
org.openrewrite.java.testing.testcontainers.ReplaceContainerImageNameArtifact
org.openrewrite.recipe:rewrite-testing-frameworksReplace a Docker image name in DockerImageName.parse(image) or new DockerImageName(image) constructor arguments for a specific container class.
Usage
You’ll need the Moderne CLI configured before running the command below.
mod run . --recipe org.openrewrite.java.testing.testcontainers.ReplaceContainerImageName --recipe-option "containerClass=org.testcontainers.containers.KafkaContainer" --recipe-option "imagePrefix=confluentinc/cp-kafka" --recipe-option "newImage=apache/kafka-native:4.0.2"If the recipe isn’t available locally, install it with:
mod config recipes jar install org.openrewrite.recipe:rewrite-testing-frameworks:3.43.0Options
| Name | Type | Description |
|---|---|---|
containerClassrequired | String | The fully qualified name of the container class to match. e.g. org.testcontainers.containers.KafkaContainer |
imagePrefixrequired | String | The Docker image prefix to match (e.g. confluentinc/cp-kafka).e.g. confluentinc/cp-kafka |
newImagerequired | String | The new Docker image to use. When a tag is included (e.g. apache/kafka-native:4.0.2), the entire image string is replaced. When no tag is included (e.g. clickhouse/clickhouse-server), only the image name prefix is replaced and the original tag is preserved.e.g. apache/kafka-native:4.0.2 |
Data tables
Structured output this recipe can produce.
- Source files that had resultsSource files that were modified by the recipe run.
org.openrewrite.table.SourcesFileResults - Source files that had search resultsSearch results that were found during the recipe run.
org.openrewrite.table.SearchResults - Source files that errored on a recipeThe details of all errors produced by a recipe run.
org.openrewrite.table.SourcesFileErrors - Recipe performanceStatistics used in analyzing the performance of recipes.
org.openrewrite.table.RecipeRunStats