podman-machine: add page (#8850)

pull/1/head
Guy Bianco IV 2022-10-11 23:21:00 -04:00 committed by GitHub
parent 3f024c1f13
commit b9553b9b3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,33 @@
# podman machine
> Create and manage virtual machines running Podman.
> Included with Podman version 4 or greater.
> More information: <https://docs.podman.io/en/latest/markdown/podman-machine.1.html>.
- List existing machines:
`podman machine ls`
- Create a new default machine:
`podman machine init`
- Create a new machine with a specific name:
`podman machine init {{name}}`
- Create a new machine with different resources:
`podman machine init --cpus={{4}} --memory={{4096}} --disk-size={{50}}`
- Start or stop a machine:
`podman machine {{start|stop}} {{name}}`
- Connect to a running machine via SSH:
`podman machine ssh {{name}}`
- Inspect information about a machine:
`podman machine inspect {{name}}`