diff options
author | Ashley Cui <acui@redhat.com> | 2022-06-17 14:47:26 -0400 |
---|---|---|
committer | Ashley Cui <acui@redhat.com> | 2022-07-05 15:18:41 -0400 |
commit | 9d6efb34428811cc2b55b306733911cf20bd0b44 (patch) | |
tree | 887aaf6a2703035c893451740f393da0186aade7 /docs/source/markdown/podman-machine-info.1.md | |
parent | b00e65aa9c071428579a55f91a92f3702765ed85 (diff) | |
download | podman-9d6efb34428811cc2b55b306733911cf20bd0b44.tar.gz podman-9d6efb34428811cc2b55b306733911cf20bd0b44.tar.bz2 podman-9d6efb34428811cc2b55b306733911cf20bd0b44.zip |
Podman machine info
Add podman machine info command, which displays infor about the machine
host as well as version info.
Signed-off-by: Ashley Cui <acui@redhat.com>
Diffstat (limited to 'docs/source/markdown/podman-machine-info.1.md')
-rw-r--r-- | docs/source/markdown/podman-machine-info.1.md | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/docs/source/markdown/podman-machine-info.1.md b/docs/source/markdown/podman-machine-info.1.md new file mode 100644 index 000000000..33c207d32 --- /dev/null +++ b/docs/source/markdown/podman-machine-info.1.md @@ -0,0 +1,36 @@ +% podman-machine-info(1) + +## NAME +podman\-machine\-info - Display machine host info + +## SYNOPSIS +**podman machine info** + +## DESCRIPTION + +Display information pertaining to the machine host. +Rootless only, as all `podman machine` commands can be only be used with rootless Podman. + +## OPTIONS + +#### **--format**=*format*, **-f** + +Change output format to "json" or a Go template. + +#### **--help** + +Print usage statement. + +## EXAMPLES + +``` +$ podman machine info +$ podman machine info --format json +$ podman machine info --format {{.Host.Arch}} +``` + +## SEE ALSO +**[podman(1)](podman.1.md)**, **[podman-machine(1)](podman-machine.1.md)** + +## HISTORY +June 2022, Originally compiled by Ashley Cui <acui@redhat.com> |