docker_wrapper/command/context/
mod.rs

1//! Docker context management commands
2//!
3//! This module provides commands for managing Docker contexts, which allow
4//! you to quickly switch between different Docker daemons.
5
6pub mod create;
7pub mod inspect;
8pub mod ls;
9pub mod rm;
10pub mod update;
11pub mod use_context;
12
13pub use create::ContextCreateCommand;
14pub use inspect::ContextInspectCommand;
15pub use ls::{ContextInfo, ContextLsCommand};
16pub use rm::ContextRmCommand;
17pub use update::ContextUpdateCommand;
18pub use use_context::ContextUseCommand;