package
2.2.1
Repository: https://github.com/containers/podman.git
Documentation: pkg.go.dev

# Functions

BuildImageHierarchyMap stores hierarchy of images such that all parent layers using which image is built are stored in imageInfo Layers are added such that (Start)RootLayer->...intermediate Parent Layer(s)-> TopLayer(End).
CreatedAfterFilter allows you to filter on images created after the given time.Time.
CreatedBeforeFilter allows you to filter on images created before the given time.Time.
CreateManifestList creates a new manifest list and can optionally add given images to the list.
DanglingFilter allows you to filter images for dangling images.
FilterImages filters images using a set of predefined filter funcs.
GetAdditionalTags returns a list of reference.NamedTagged for the additional tags given in images.
GetImageBaseName uses decompose and string splits to obtain the base name of an image.
GetLayersMapWithImageInfo returns map of image-layers, with associated information like RepoTags, parent and list of child layers.
GetSystemContext Constructs a new containers/image/types.SystemContext{} struct from the given signaturePolicy path.
IDFilter allows you to filter by image Id.
IsValidImageURI checks if image name has valid format.
LabelFilter allows you to filter by images labels key and/or value.
NewImageRuntimeFromOptions creates an Image Runtime including the store given store options.
NewImageRuntimeFromStore creates an ImageRuntime based on a provided store.
NormalizedTag returns the canonical version of tag for use in Image.Names().
OutputImageFilter allows you to filter by an a specific image name.
ParseSearchFilter turns the filter into a SearchFilter that can be used for searching images.
ReadOnlyFilter allows you to filter images based on read/only and read/write.
ReferenceFilter allows you to filter by image name Replacing all '/' with '|' so that filepath.Match() can work '|' character is not valid in image name, so this is safe.
SearchImages searches images based on term and the specified SearchOptions in all registries.

# Constants

LatestTag describes the tag used to refer to the latest version of an image.

# Variables

AtomicTransport is the transport for atomic registries.
DefaultLocalRegistry is the default local registry for local image operations Remote pulls will still use defined registries.
DefaultTransport is a prefix that we apply to an image name NOTE: This is a string prefix, not actually a transport name usable for transports.Get(); and because syntaxes of image names are transport-dependent, the prefix is not really interchangeable; each user implicitly assumes the appended string is a Docker-like reference.
DirTransport is the transport for pushing and pulling images to and from a directory.
DockerArchive is the transport we prepend to an image name when saving to docker-archive.
DockerTransport is the transport for docker registries.
ErrImageIsBareList is the error returned when the image is just a list or index.
ErrNoSuchCtr indicates the requested container does not exist.
ErrNoSuchImage indicates the requested image does not exist.
ErrNoSuchPod indicates the requested pod does not exist.
ErrNoSuchTag indicates the requested image tag does not exist.
ErrRepoTagNotFound is the error returned when the image id given doesn't match a rep tag in store.
OCIArchive is the transport we prepend to an image name when saving to oci-archive.
OCIDirTransport is the transport for pushing and pulling images to and from a directory containing an OCI image.

# Structs

DiskUsageStat gives disk-usage statistics for a specific image.
DockerRegistryOptions encapsulates settings that affect how we connect or authenticate to a remote registry.
History contains the history information of an image.
Image is the primary struct for dealing with images It is still very much a work in progress.
ImageDeleteResponse is the response for removing an image from storage and containers what was untagged vs actually removed.
InfoImage keep information of Image along with all associated layers.
LayerInfo keeps information of single layer.
Options for adding a manifest swagger:model ManifestAddOpts.
ManifestAnnotateOptions defines the options for manifest annotate.
Runtime contains the store.
SearchFilter allows filtering the results of SearchImages.
SearchOptions are used to control the behaviour of SearchImages.
SearchResult is holding image-search related data.
SigningOptions encapsulates settings that control whether or not we strip or add signatures to images when writing them.

# Type aliases

Filter is a function to determine whether an image is included in command output.
ImageFilter is a function to determine whether a image is included in command output.
ResultFilter is a mock function for image filtering.