docker_wrapper/command/manifest.rs
1//! Docker manifest command implementations.
2//!
3//! This module provides commands for managing Docker manifests and manifest lists.
4//! Manifest lists allow you to use one name to refer to the same image built for
5//! multiple architectures.
6//!
7//! Note: Docker manifest commands are experimental features.
8
9pub mod annotate;
10pub mod create;
11pub mod inspect;
12pub mod push;
13pub mod rm;
14
15pub use annotate::{ManifestAnnotateCommand, ManifestAnnotateResult};
16pub use create::{ManifestCreateCommand, ManifestCreateResult};
17pub use inspect::{ManifestInfo, ManifestInspectCommand, ManifestPlatform};
18pub use push::{ManifestPushCommand, ManifestPushResult};
19pub use rm::{ManifestRmCommand, ManifestRmResult};