Package io.fabric8.maven.docker.model
Interface Image
-
- All Known Implementing Classes:
ImageDetails
public interface ImageInterface representing an image on the server.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetCreated()StringgetId()Map<String,String>getLabels()StringgetParentId()List<String>getRepoDigests()List<String>getRepoTags()longgetSize()longgetVirtualSize()
-
-
-
Method Detail
-
getId
String getId()
- Returns:
- the image ID
-
getParentId
String getParentId()
- Returns:
- the image ID, or null if not present
-
getCreated
long getCreated()
- Returns:
- Image create timestamp
-
getSize
long getSize()
- Returns:
- the image size
-
getVirtualSize
long getVirtualSize()
- Returns:
- the image virtual size
-
getRepoTags
List<String> getRepoTags()
- Returns:
- the names associated with the image (formatted as repository:tag)
-
-