Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/docker_compose.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
//! Docker Compose example demonstrating multi-container application management
//! Docker Compose example demonstrating multi-container application management.
//!
//! This example shows how to use the compose feature to manage
//! multi-container applications with Docker Compose.
//!
//! Run with: cargo run --example docker_compose --features compose
//! Run with: cargo run --example docker_compose --features compose.

#[cfg(feature = "compose")]
use docker_wrapper::compose::down::RemoveImages;
Expand Down
2 changes: 1 addition & 1 deletion examples/exec_examples.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ async fn env_exec_example(container_id: &str) {
}
}

// Multiple environment variables from HashMap
// multiple environment variables from HashMap
let mut env_vars = HashMap::new();
env_vars.insert("DEBUG".to_string(), "true".to_string());
env_vars.insert("LOG_LEVEL".to_string(), "info".to_string());
Expand Down
Loading
Loading