mirror of
https://github.com/containers/podman.git
synced 2025-07-29 11:22:38 +08:00

Escape the two dashes, otherwise they are combined into one long dash. I tested that this change is safe and still renders correctly on github and with the man pages. This commit also contains a small change to make it build locally. Assuming you have the dependencies installed you can do: ``` cd docs make html ``` Preview the html files in docs/build/html with `python -m http.server 8000 --directory build/html`. Fixes containers/podman.io#373 Signed-off-by: Paul Holzinger <paul.holzinger@web.de>
36 lines
653 B
Markdown
36 lines
653 B
Markdown
% podman-machine-stop(1)
|
|
|
|
## NAME
|
|
podman\-machine\-stop - Stop a virtual machine
|
|
|
|
## SYNOPSIS
|
|
**podman machine stop** [*name*]
|
|
|
|
## DESCRIPTION
|
|
|
|
Stops a virtual machine.
|
|
|
|
Podman on MacOS requires a virtual machine. This is because containers are Linux -
|
|
containers do not run on any other OS because containers' core functionality are
|
|
tied to the Linux kernel.
|
|
|
|
**podman machine stop** stops a Linux virtual machine where containers are run.
|
|
|
|
## OPTIONS
|
|
|
|
#### **\-\-help**
|
|
|
|
Print usage statement.
|
|
|
|
## EXAMPLES
|
|
|
|
```
|
|
$ podman machine stop myvm
|
|
```
|
|
|
|
## SEE ALSO
|
|
podman-machine (1)
|
|
|
|
## HISTORY
|
|
March 2021, Originally compiled by Ashley Cui <acui@redhat.com>
|