docker_wrapper/command/
network.rs

1//! Docker network management commands.
2//!
3//! This module provides commands for managing Docker networks:
4//! - `network create` - Create a network
5//! - `network ls` - List networks
6//! - `network rm` - Remove networks
7//! - `network inspect` - Display detailed network information
8//! - `network connect` - Connect a container to a network
9//! - `network disconnect` - Disconnect a container from a network
10//! - `network prune` - Remove unused networks
11
12pub mod connect;
13pub mod create;
14pub mod disconnect;
15pub mod inspect;
16pub mod ls;
17pub mod prune;
18pub mod rm;
19
20pub use connect::{NetworkConnectCommand, NetworkConnectResult};
21pub use create::{NetworkCreateCommand, NetworkCreateResult};
22pub use disconnect::{NetworkDisconnectCommand, NetworkDisconnectResult};
23pub use inspect::{NetworkInspectCommand, NetworkInspectOutput};
24pub use ls::{NetworkInfo, NetworkLsCommand, NetworkLsOutput};
25pub use prune::{NetworkPruneCommand, NetworkPruneResult};
26pub use rm::{NetworkRmCommand, NetworkRmResult};