summaryrefslogtreecommitdiff
path: root/docs/source/markdown
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-03-26 13:45:11 +0000
committerGitHub <noreply@github.com>2021-03-26 13:45:11 +0000
commit25525ff834cc979566bb09e5546ee0a72ef76a79 (patch)
tree382f7f94db7230225e2e4a23975045118b4a12da /docs/source/markdown
parent7ae1d23a380ae0c9cf4edb64ba288a8464c3cf13 (diff)
parentf6638571037c3d92066540e32fa08b76ce7f1fd8 (diff)
downloadpodman-25525ff834cc979566bb09e5546ee0a72ef76a79.tar.gz
podman-25525ff834cc979566bb09e5546ee0a72ef76a79.tar.bz2
podman-25525ff834cc979566bb09e5546ee0a72ef76a79.zip
Merge pull request #9820 from ashley-cui/machineinit
[NO TESTS NEEDED] Rename podman machine create to init and clean up
Diffstat (limited to 'docs/source/markdown')
-rw-r--r--docs/source/markdown/podman-machine-init.1.md (renamed from docs/source/markdown/podman-machine-create.1.md)16
-rw-r--r--docs/source/markdown/podman-machine.1.md14
2 files changed, 15 insertions, 15 deletions
diff --git a/docs/source/markdown/podman-machine-create.1.md b/docs/source/markdown/podman-machine-init.1.md
index eb498f2dd..5ff07de03 100644
--- a/docs/source/markdown/podman-machine-create.1.md
+++ b/docs/source/markdown/podman-machine-init.1.md
@@ -1,20 +1,20 @@
-% podman-machine-create(1)
+% podman-machine-init(1)
## NAME
-podman\-machine\-create - Create a new virtual machine
+podman\-machine\-init - Initialize a new virtual machine
## SYNOPSIS
-**podman machine create** [*options*] [*name*]
+**podman machine init** [*options*] [*name*]
## DESCRIPTION
-Creates a new virtual machine for Podman.
+Initialize a new virtual machine for Podman.
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 create** creates a new Linux virtual machine where containers are run.
+**podman machine init** initializes a new Linux virtual machine where containers are run.
## OPTIONS
@@ -41,9 +41,9 @@ Print usage statement.
## EXAMPLES
```
-$ podman machine create myvm
-$ podman machine create --device=/dev/xvdc:rw myvm
-$ podman machine create --memory=1024 myvm
+$ podman machine init myvm
+$ podman machine init --device=/dev/xvdc:rw myvm
+$ podman machine init --memory=1024 myvm
```
## SEE ALSO
diff --git a/docs/source/markdown/podman-machine.1.md b/docs/source/markdown/podman-machine.1.md
index 52f212cdd..0e3c1ca34 100644
--- a/docs/source/markdown/podman-machine.1.md
+++ b/docs/source/markdown/podman-machine.1.md
@@ -11,13 +11,13 @@ podman\-machine - Manage Podman's virtual machine
## SUBCOMMANDS
-| Command | Man Page | Description |
-| ------- | ------------------------------------------------------- | ----------------------------- |
-| create | [podman-machine-create(1)](podman-machine-create.1.md) | Create a new virtual machine |
-| remove | [podman-machine-destroy(1)](podman-machine-remove.1.md)| Remove a virtual machine |
-| ssh | [podman-machine-ssh.1.md(1)](podman-machine-ssh.1.md) | SSH into a virtual machine |
-| start | [podman-machine-start(1)](podman-machine-start.1.md) | Start a virtual machine |
-| stop | [podman-machine-stop(1)](podman-machine-stop.1.md) | Stop a virtual machine |
+| Command | Man Page | Description |
+| ------- | ------------------------------------------------------- | --------------------------------- |
+| init | [podman-machine-init(1)](podman-machine-init.1.md) | Initialize a new virtual machine |
+| remove | [podman-machine-remove(1)](podman-machine-remove.1.md) | Remove a virtual machine |
+| ssh | [podman-machine-ssh(1)](podman-machine-ssh.1.md) | SSH into a virtual machine |
+| start | [podman-machine-start(1)](podman-machine-start.1.md) | Start a virtual machine |
+| stop | [podman-machine-stop(1)](podman-machine-stop.1.md) | Stop a virtual machine |
## SEE ALSO
podman(1)