containerd-store 0.1.0

Read-only access to containerd content and metadata for air-gapped image export
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod export;
mod store;
mod types;

pub use export::{export_image_to_dir, export_images_to_dir};
pub use store::ContainerdStore;
#[cfg(feature = "bucket-logging")]
pub use store::{BucketKind, BucketMatch, set_bucket_match_logger};
pub use types::{
    Descriptor, DigestRef, ImageEntry, ManifestInfo, PortableImageExport, ResolvedImage,
};