Skip to content
Merged
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
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0"
name = "omnect-cli"
readme = "README.md"
repository = "https://github.com/omnect/omnect-cli"
version = "0.24.15"
version = "0.24.16"

[dependencies]
actix-web = "4.9"
Expand Down
13 changes: 11 additions & 2 deletions src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,14 @@ const COPYRIGHT: &str = "Copyright © 2021 by conplement AG";
#[command(after_help = COPYRIGHT)]
/// manage docker containers in a firmware image
pub enum Docker {
/// pull and inject a docker image (not supported via omnect-ui container)
/// pull and inject a docker image into the factory partition.
///
/// Note: This command injects the docker image into the factory partition.
/// Therefore, the injected image will remain there even after factory
/// resets.
///
/// Furthermore, the command is currently only supported for native
/// omnect-cli, i.e., it will not work for the omnect-cli docker image.
Inject {
/// full qualified name of the docker image
#[clap(short = 'd', long = "docker-image", required(true))]
Expand Down Expand Up @@ -313,7 +320,9 @@ pub enum SshConfig {
compress_image: Option<Compression>,
},

/// set ssh connection parameters (currently not working in docker image)
/// set ssh connection parameters (see
/// https://github.com/omnect/omnect-cli?tab=readme-ov-file#usage-with-docker
/// for details on how to use this command with the docker image)
SetConnection {
/// username for the login on the device.
#[arg(short = 'u', long = "user", default_value = "omnect")]
Expand Down
Loading