diff --git a/plugins/podman/README.md b/plugins/podman/README.md index 99daa28cde1b..ed34eb4dc146 100644 --- a/plugins/podman/README.md +++ b/plugins/podman/README.md @@ -23,6 +23,16 @@ plugins=(... podman) | pirm | `podman image rm` | Remove one or more images | | pit | `podman image tag` | Add a name and tag to a particular image | | plo | `podman container logs` | Fetch the logs of a podman container | +| pmif | `podman machine info` | Display machine host info | +| pmit | `podman machine init` | Initialize a virtual machine | +| pmis | `podman machine inspect` | Inspect an existing machine | +| pml | `podman machine list` | List machines | +| pmo | `podman machine os` | Manage a Podman virtual machine's OS | +| pmrm | `podman machine rm` | Remove an existing machine | +| pms | `podman machine set` | Set a virtual machine setting | +| pmss | `podman machine ssh` | SSH into an existing machine | +| pmst | `podman machine start` | Start an existing machine | +| pmsp | `podman machine stop` | Stop an existing machine | | pnc | `podman network create` | Create a new network | | pncn | `podman network connect` | Connect a container to a network | | pndcn | `podman network disconnect` | Disconnect a container from a network | diff --git a/plugins/podman/podman.plugin.zsh b/plugins/podman/podman.plugin.zsh index 97cf92b2a5f6..25330578a6cd 100644 --- a/plugins/podman/podman.plugin.zsh +++ b/plugins/podman/podman.plugin.zsh @@ -22,6 +22,16 @@ alias pils='podman image ls' alias pipu='podman image push' alias pirm='podman image rm' alias pit='podman image tag' +alias pmif='podman machine info' +alias pmit='podman machine init' +alias pmis='podman machine inspect' +alias pml='podman machine list' +alias pmo='podman machine os' +alias pmrm='podman machine rm' +alias pms='podman machine set' +alias pmss='podman machine ssh' +alias pmst='podman machine start' +alias pmsp='podman machine stop' alias plo='podman container logs' alias pnc='podman network create' alias pncn='podman network connect'