Class ImageUtil
java.lang.Object
io.quarkus.container.image.deployment.util.ImageUtil
-
Method Summary
Modifier and TypeMethodDescriptionstatic StringReturn the image group.static StringCreate an image from the individual parts.static StringReturn the docker image name.getRegistry(String image) Return the image registry.static StringgetRepository(String image) Return the docker image repository.static StringReturn the tag of the image.
-
Method Details
-
getImage
Create an image from the individual parts.- Parameters:
registry- The registry.repository- The group.name- The name.tag- The tag.- Returns:
- The image.
-
getRegistry
Return the image registry.- Parameters:
image- The docker image.- Returns:
- The image registry.
-
getGroup
Return the image group.- Parameters:
image- The docker image.- Returns:
- The image group.
-
getRepository
Return the docker image repository.- Parameters:
image- The docker image.- Returns:
- The image repository.
-
getName
Return the docker image name.- Parameters:
image- The docker image.- Returns:
- The image name.
-
getTag
Return the tag of the image.- Parameters:
image- The docker image.- Returns:
- The tag if present or null otherwise.
-