Skip to content

Commit

Permalink
Update message
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitryDodzin committed Jan 2, 2025
1 parent ef7e6df commit 5b51799
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion mirrord/cli/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -834,7 +834,8 @@ pub struct RuntimeArgs {
/// Supported command for using mirrord with container runtimes.
#[derive(Subcommand, Debug, Clone)]
pub(super) enum ContainerRuntimeCommand {
/// Execute a `<RUNTIME> create` command with mirrord loaded.
/// Execute a `<RUNTIME> create` command with mirrord loaded. (not supported with )
#[command(hide = true)]
Create {
/// Arguments that will be propogated to underlying `<RUNTIME> create` command.
#[arg(allow_hyphen_values = true, trailing_var_arg = true)]
Expand Down
2 changes: 1 addition & 1 deletion mirrord/cli/src/container.rs
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ pub(crate) async fn container_command(
let mut progress = ProgressTracker::from_env("mirrord container");

if runtime_args.command.has_publish() {
progress.warning("mirrord container may have problems with \"-p\" directly container in command, please add to \"contanier.cli_extra_args\" in config if you are planning to publish ports");
progress.warning("mirrord container may have problems with \"-p\" when used as part of container run command, please add the publish arguments to \"contanier.cli_extra_args\" in config if you are planning to publish ports");
}

progress.warning("mirrord container is currently an unstable feature");
Expand Down

0 comments on commit 5b51799

Please sign in to comment.