diff --git a/docs/src/man/bootc-install-to-disk.md b/docs/src/man/bootc-install-to-disk.md index 05f75febb..421ebdd9a 100644 --- a/docs/src/man/bootc-install-to-disk.md +++ b/docs/src/man/bootc-install-to-disk.md @@ -58,7 +58,7 @@ previous paragraph. See skopeo(1) for accepted formats. **\--target-transport**=*TARGET_TRANSPORT* \[default: registry\] -: The transport; e.g. oci, oci-archive. Defaults to \`registry\` +: The transport; e.g. oci, oci-archive, containers-storage. Defaults to \`registry\` **\--target-imgref**=*TARGET_IMGREF* diff --git a/docs/src/man/bootc-install-to-existing-root.md b/docs/src/man/bootc-install-to-existing-root.md index cf571a263..01f0d38b5 100644 --- a/docs/src/man/bootc-install-to-existing-root.md +++ b/docs/src/man/bootc-install-to-existing-root.md @@ -48,7 +48,7 @@ previous paragraph. See skopeo(1) for accepted formats. **\--target-transport**=*TARGET_TRANSPORT* \[default: registry\] -: The transport; e.g. oci, oci-archive. Defaults to \`registry\` +: The transport; e.g. oci, oci-archive, containers-storage. Defaults to \`registry\` **\--target-imgref**=*TARGET_IMGREF* diff --git a/docs/src/man/bootc-install-to-filesystem.md b/docs/src/man/bootc-install-to-filesystem.md index cf915b79e..0ef7c0d9f 100644 --- a/docs/src/man/bootc-install-to-filesystem.md +++ b/docs/src/man/bootc-install-to-filesystem.md @@ -75,7 +75,7 @@ previous paragraph. See skopeo(1) for accepted formats. **\--target-transport**=*TARGET_TRANSPORT* \[default: registry\] -: The transport; e.g. oci, oci-archive. Defaults to \`registry\` +: The transport; e.g. oci, oci-archive, containers-storage. Defaults to \`registry\` **\--target-imgref**=*TARGET_IMGREF* diff --git a/docs/src/man/bootc-switch.md b/docs/src/man/bootc-switch.md index 9f8a9070b..fd0409c79 100644 --- a/docs/src/man/bootc-switch.md +++ b/docs/src/man/bootc-switch.md @@ -32,7 +32,7 @@ updates via container image tags; for example, **\--transport**=*TRANSPORT* \[default: registry\] -: The transport; e.g. oci, oci-archive. Defaults to \`registry\` +: The transport; e.g. oci, oci-archive, containers-storage. Defaults to \`registry\` **\--enforce-container-sigpolicy** diff --git a/lib/src/cli.rs b/lib/src/cli.rs index 05f1b2b7b..2ced89794 100644 --- a/lib/src/cli.rs +++ b/lib/src/cli.rs @@ -55,7 +55,7 @@ pub(crate) struct SwitchOpts { #[clap(long)] pub(crate) quiet: bool, - /// The transport; e.g. oci, oci-archive. Defaults to `registry`. + /// The transport; e.g. oci, oci-archive, containers-storage. Defaults to `registry`. #[clap(long, default_value = "registry")] pub(crate) transport: String, diff --git a/lib/src/install.rs b/lib/src/install.rs index b3ed0d373..79fd51da8 100644 --- a/lib/src/install.rs +++ b/lib/src/install.rs @@ -67,7 +67,7 @@ const RW_KARG: &str = "rw"; pub(crate) struct InstallTargetOpts { // TODO: A size specifier which allocates free space for the root in *addition* to the base container image size // pub(crate) root_additional_size: Option - /// The transport; e.g. oci, oci-archive. Defaults to `registry`. + /// The transport; e.g. oci, oci-archive, containers-storage. Defaults to `registry`. #[clap(long, default_value = "registry")] #[serde(default)] pub(crate) target_transport: String,