diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-02-16 13:39:42 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-16 13:39:42 -0500 |
commit | f918a9418f5eeb00b289c127142953da2c394867 (patch) | |
tree | 7d35979ea9e9419ab37557d24ff121a9b99b6f40 /docs/source/markdown/podman-machine-set.1.md | |
parent | 317a1535f93f83ee803844902855717c6e784935 (diff) | |
parent | 50fbe52f495b0623b238edd4d23080231db96b79 (diff) | |
download | podman-f918a9418f5eeb00b289c127142953da2c394867.tar.gz podman-f918a9418f5eeb00b289c127142953da2c394867.tar.bz2 podman-f918a9418f5eeb00b289c127142953da2c394867.zip |
Merge pull request #13075 from n1hility/mac-forward-helper
Mac API forwarding using a privileged docker socket claim helper
Diffstat (limited to 'docs/source/markdown/podman-machine-set.1.md')
-rw-r--r-- | docs/source/markdown/podman-machine-set.1.md | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/docs/source/markdown/podman-machine-set.1.md b/docs/source/markdown/podman-machine-set.1.md new file mode 100644 index 000000000..e69779564 --- /dev/null +++ b/docs/source/markdown/podman-machine-set.1.md @@ -0,0 +1,59 @@ +% podman-machine-set(1) + +## NAME +podman\-machine\-set - Sets a virtual machine setting + +## SYNOPSIS +**podman machine set** [*options*] [*name*] + +## DESCRIPTION + +Sets an updatable virtual machine setting. + +Options mirror values passed to `podman machine init`. Only a limited +subset can be changed after machine initialization. + +## OPTIONS + +#### **--rootful**=*true|false* + +Whether this machine should prefer rootful (`true`) or rootless (`false`) +container execution. This option will also update the current podman +remote connection default if it is currently pointing at the specified +machine name (or `podman-machine-default` if no name is specified). + +API forwarding, if available, will follow this setting. + +#### **--help** + +Print usage statement. + +## EXAMPLES + +To switch the default VM `podman-machine-default` from rootless to rootful: + +``` +$ podman machine set --rootful +``` + +or more explicitly: + +``` +$ podman machine set --rootful=true +``` + +To switch the default VM `podman-machine-default` from rootful to rootless: +``` +$ podman machine set --rootful=false +``` + +To switch the VM `myvm` from rootless to rootful: +``` +$ podman machine set --rootful myvm +``` + +## SEE ALSO +**[podman(1)](podman.1.md)**, **[podman-machine(1)](podman-machine.1.md)** + +## HISTORY +February 2022, Originally compiled by Jason Greene <jason.greene@redhat.com> |