Module io.inverno.tool.buildtools
Package io.inverno.tool.buildtools
Interface ContainerizeTask.ContainerImage
- All Superinterfaces:
Image
- Enclosing interface:
ContainerizeTask
Represents the generated container image.
- Since:
- 1.4
- Author:
- Jeremy Kuhn
-
Method Summary
Modifier and TypeMethodDescriptionReturns the canonical name of the image (e.g.Returns the image digest.Returns the image registry.Returns the image repository.getTag()
Returns the image tag.Methods inherited from interface io.inverno.tool.buildtools.Image
getClassifier, getFormat, getPath
-
Method Details
-
getRegistry
String getRegistry()Returns the image registry.
- Returns:
- the image registry
-
getRepository
String getRepository()Returns the image repository.
- Returns:
- the imae repository
-
getTag
Returns the image tag.
- Returns:
- an optional returning the image tag or an empty optional
-
getDigest
Returns the image digest.
- Returns:
- an optional returning the image digest or an empty optional
-
getCanonicalName
String getCanonicalName()Returns the canonical name of the image (e.g.
registry/repository:tag
)- Returns:
- the canonical name of the image
-