Skip to content

Commit

Permalink
Fix info log about how to stop a running container
Browse files Browse the repository at this point in the history
  • Loading branch information
elizabethengelman committed Jul 1, 2024
1 parent 040a6c0 commit 22350cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/soroban-cli/src/commands/network/container/start.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ async fn run_docker_command(cmd: &Cmd) -> Result<(), Error> {
.await?;
println!("✅ Container started: {container_name}");
let stop_message = format!(
"ℹ️ To stop this container run: stellar network stop {network} {additional_flags}",
"ℹ️ To stop this container run: stellar network container stop {network} {additional_flags}",
network = &cmd.network,
additional_flags = if cmd.docker_host.is_some() {
format!("--docker-host {}", cmd.docker_host.as_ref().unwrap())
Expand Down

0 comments on commit 22350cf

Please sign in to comment.