Class NormalizeDockerHubImageName

java.lang.Object
org.openrewrite.Recipe
org.openrewrite.docker.NormalizeDockerHubImageName
All Implemented Interfaces:
Cloneable

public class NormalizeDockerHubImageName extends org.openrewrite.Recipe
Normalizes Docker Hub image names to their canonical short form.

This recipe removes redundant Docker Hub registry prefixes from image names:

  • docker.io/library/ubuntu → ubuntu
  • docker.io/myuser/myimage → myuser/myimage
  • index.docker.io/library/ubuntu → ubuntu
  • registry.hub.docker.com/library/ubuntu → ubuntu
  • Nested Class Summary

    Nested classes/interfaces inherited from class org.openrewrite.Recipe

    org.openrewrite.Recipe.Builder, org.openrewrite.Recipe.DelegatingRecipe
  • Field Summary

    Fields inherited from class org.openrewrite.Recipe

    contributors, examples, PANIC
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    org.openrewrite.TreeVisitor<?,org.openrewrite.ExecutionContext>
     

    Methods inherited from class org.openrewrite.Recipe

    addDataTable, builder, buildRecipeList, causesAnotherCycle, clone, createRecipeDescriptor, equals, getContributors, getDataTableDescriptors, getDescription, getDescriptor, getDisplayName, getEstimatedEffortPerOccurrence, getExamples, getInstanceName, getInstanceNameSuffix, getJacksonPolymorphicTypeTag, getMaintainers, getName, getRecipeList, getTags, hashCode, maxCycles, noop, onComplete, run, run, run, setContributors, setExamples, validate, validate, validateAll, validateAll, withOptions

    Methods inherited from class java.lang.Object

    finalize, getClass, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • NormalizeDockerHubImageName

      public NormalizeDockerHubImageName()
  • Method Details

    • getVisitor

      public org.openrewrite.TreeVisitor<?,org.openrewrite.ExecutionContext> getVisitor()
      Overrides:
      getVisitor in class org.openrewrite.Recipe