docker-wrapper 0.11.1

A Docker CLI wrapper for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Docker context management commands
//!
//! This module provides commands for managing Docker contexts, which allow
//! you to quickly switch between different Docker daemons.

pub mod create;
pub mod inspect;
pub mod ls;
pub mod rm;
pub mod update;
pub mod use_context;

pub use create::ContextCreateCommand;
pub use inspect::ContextInspectCommand;
pub use ls::{ContextInfo, ContextLsCommand};
pub use rm::ContextRmCommand;
pub use update::ContextUpdateCommand;
pub use use_context::ContextUseCommand;