mirror of https://github.com/containers/podman.git
Merge pull request #5460 from edsantiago/man_page_xref
man page cross-reference fixes: part 2
This commit is contained in:
commit
9cfcf5692b
|
|
@ -49,7 +49,7 @@ func init() {
|
|||
flags.StringVar(&runlabelCommand.Creds, "creds", "", "`Credentials` (USERNAME:PASSWORD) to use for authenticating to a registry")
|
||||
flags.BoolVar(&runlabelCommand.Display, "display", false, "Preview the command that the label would run")
|
||||
flags.BoolVar(&runlabelCommand.Replace, "replace", false, "Replace existing container with a new one from the image")
|
||||
flags.StringVar(&runlabelCommand.Name, "name", "", "Assign a name to the container")
|
||||
flags.StringVarP(&runlabelCommand.Name, "name", "n", "", "Assign a name to the container")
|
||||
|
||||
flags.StringVar(&runlabelCommand.Opt1, "opt1", "", "Optional parameter to pass for install")
|
||||
flags.StringVar(&runlabelCommand.Opt2, "opt2", "", "Optional parameter to pass for install")
|
||||
|
|
|
|||
|
|
@ -38,10 +38,6 @@ Can be set multiple times
|
|||
Set the format of the image manifest and metadata. The currently supported formats are _oci_ and _docker_. If
|
||||
not specifically set, the default format used is _oci_.
|
||||
|
||||
**--iidfile**=*ImageIDfile*
|
||||
|
||||
Write the image ID to the file.
|
||||
|
||||
**--include-volumes**
|
||||
|
||||
Include in the committed image any volumes added to the container by the `--volume` or `--mount` options to the `podman create` and `podman run` commands.
|
||||
|
|
|
|||
|
|
@ -81,13 +81,6 @@ Suppress output information when pulling images
|
|||
If a container exists of the default or given name, as needed it will be stopped, deleted and a new container will be
|
||||
created from this image.
|
||||
|
||||
**--rootfs**=*ROOTFS*
|
||||
|
||||
Set rootfs
|
||||
|
||||
**--storage**
|
||||
Use storage
|
||||
|
||||
**--tls-verify**
|
||||
|
||||
Require HTTPS and verify certificates when contacting registries (default: true). If explicitly set to true,
|
||||
|
|
|
|||
|
|
@ -94,14 +94,6 @@ Write the container ID to the file
|
|||
|
||||
Write the pid of the `conmon` process to a file. `conmon` runs in a separate process than Podman, so this is necessary when using systemd to restart Podman containers.
|
||||
|
||||
**--cpu-count**=*limit*
|
||||
|
||||
Limit the number of CPUs available for execution by the container.
|
||||
|
||||
On Windows Server containers, this is approximated as a percentage of total CPU usage.
|
||||
|
||||
On Windows Server containers, the processor resource controls are mutually exclusive, the order of precedence is CPUCount first, then CPUShares, and CPUPercent last.
|
||||
|
||||
**--cpu-period**=*limit*
|
||||
|
||||
Limit the CPU CFS (Completely Fair Scheduler) period
|
||||
|
|
|
|||
Loading…
Reference in New Issue