mirror of
https://github.com/containers/podman.git
synced 2025-07-17 17:43:23 +08:00
man pages and command help: clean up descriptions
Short description in man pages: * Use imperative form Command help (cobra.Command.Short): * Capitalize first letter * Use imperative form * Remove ending full stop when the short description only contains one sentence without any commas Command help (cobra.Command.Long): * Capitalize first letter unless the sentence starts with a command "podman command ..." * Use imperative form when the long description is identical or almost identical to the short description. This modification was only done in a few places. Command tables: * Use imperative form in the "Description" column [NO NEW TESTS NEEDED] Signed-off-by: Erik Sjölund <erik.sjolund@gmail.com>
This commit is contained in:
@ -72,8 +72,8 @@ type launchParams struct {
|
|||||||
|
|
||||||
var installCmd = &cobra.Command{
|
var installCmd = &cobra.Command{
|
||||||
Use: "install",
|
Use: "install",
|
||||||
Short: "installs the podman helper agent",
|
Short: "Install the podman helper agent",
|
||||||
Long: "installs the podman helper agent, which manages the /var/run/docker.sock link",
|
Long: "Install the podman helper agent, which manages the /var/run/docker.sock link",
|
||||||
PreRun: silentUsage,
|
PreRun: silentUsage,
|
||||||
RunE: install,
|
RunE: install,
|
||||||
}
|
}
|
||||||
|
@ -21,8 +21,8 @@ const (
|
|||||||
|
|
||||||
var serviceCmd = &cobra.Command{
|
var serviceCmd = &cobra.Command{
|
||||||
Use: "service",
|
Use: "service",
|
||||||
Short: "services requests",
|
Short: "Service requests",
|
||||||
Long: "services requests",
|
Long: "Service requests",
|
||||||
PreRun: silentUsage,
|
PreRun: silentUsage,
|
||||||
Run: serviceRun,
|
Run: serviceRun,
|
||||||
Hidden: true,
|
Hidden: true,
|
||||||
|
@ -14,8 +14,8 @@ import (
|
|||||||
|
|
||||||
var uninstallCmd = &cobra.Command{
|
var uninstallCmd = &cobra.Command{
|
||||||
Use: "uninstall",
|
Use: "uninstall",
|
||||||
Short: "uninstalls the podman helper agent",
|
Short: "Uninstall the podman helper agent",
|
||||||
Long: "uninstalls the podman helper agent, which manages the /var/run/docker.sock link",
|
Long: "Uninstall the podman helper agent, which manages the /var/run/docker.sock link",
|
||||||
PreRun: silentUsage,
|
PreRun: silentUsage,
|
||||||
RunE: uninstall,
|
RunE: uninstall,
|
||||||
}
|
}
|
||||||
|
@ -27,7 +27,7 @@ var (
|
|||||||
`
|
`
|
||||||
checkpointCommand = &cobra.Command{
|
checkpointCommand = &cobra.Command{
|
||||||
Use: "checkpoint [options] CONTAINER [CONTAINER...]",
|
Use: "checkpoint [options] CONTAINER [CONTAINER...]",
|
||||||
Short: "Checkpoints one or more containers",
|
Short: "Checkpoint one or more containers",
|
||||||
Long: checkpointDescription,
|
Long: checkpointDescription,
|
||||||
RunE: checkpoint,
|
RunE: checkpoint,
|
||||||
Args: func(cmd *cobra.Command, args []string) error {
|
Args: func(cmd *cobra.Command, args []string) error {
|
||||||
|
@ -23,7 +23,7 @@ var (
|
|||||||
`
|
`
|
||||||
restoreCommand = &cobra.Command{
|
restoreCommand = &cobra.Command{
|
||||||
Use: "restore [options] CONTAINER|IMAGE [CONTAINER|IMAGE...]",
|
Use: "restore [options] CONTAINER|IMAGE [CONTAINER|IMAGE...]",
|
||||||
Short: "Restores one or more containers from a checkpoint",
|
Short: "Restore one or more containers from a checkpoint",
|
||||||
Long: restoreDescription,
|
Long: restoreDescription,
|
||||||
RunE: restore,
|
RunE: restore,
|
||||||
Args: func(cmd *cobra.Command, args []string) error {
|
Args: func(cmd *cobra.Command, args []string) error {
|
||||||
|
@ -23,7 +23,7 @@ var (
|
|||||||
Annotations: map[string]string{registry.EngineMode: registry.ABIMode},
|
Annotations: map[string]string{registry.EngineMode: registry.ABIMode},
|
||||||
Use: "unmount [options] CONTAINER [CONTAINER...]",
|
Use: "unmount [options] CONTAINER [CONTAINER...]",
|
||||||
Aliases: []string{"umount"},
|
Aliases: []string{"umount"},
|
||||||
Short: "Unmounts working container's root filesystem",
|
Short: "Unmount working container's root filesystem",
|
||||||
Long: description,
|
Long: description,
|
||||||
RunE: unmount,
|
RunE: unmount,
|
||||||
Args: func(cmd *cobra.Command, args []string) error {
|
Args: func(cmd *cobra.Command, args []string) error {
|
||||||
|
@ -19,7 +19,7 @@ var (
|
|||||||
|
|
||||||
updateCommand = &cobra.Command{
|
updateCommand = &cobra.Command{
|
||||||
Use: "update [options] CONTAINER",
|
Use: "update [options] CONTAINER",
|
||||||
Short: "update an existing container",
|
Short: "Update an existing container",
|
||||||
Long: updateDescription,
|
Long: updateDescription,
|
||||||
RunE: update,
|
RunE: update,
|
||||||
Args: cobra.ExactArgs(1),
|
Args: cobra.ExactArgs(1),
|
||||||
|
@ -46,7 +46,7 @@ var (
|
|||||||
|
|
||||||
systemdCmd = &cobra.Command{
|
systemdCmd = &cobra.Command{
|
||||||
Use: "systemd [options] {CONTAINER|POD}",
|
Use: "systemd [options] {CONTAINER|POD}",
|
||||||
Short: "Generate systemd units.",
|
Short: "Generate systemd units",
|
||||||
Long: systemdDescription,
|
Long: systemdDescription,
|
||||||
RunE: systemd,
|
RunE: systemd,
|
||||||
Args: cobra.ExactArgs(1),
|
Args: cobra.ExactArgs(1),
|
||||||
|
@ -14,8 +14,8 @@ import (
|
|||||||
var (
|
var (
|
||||||
runCmd = &cobra.Command{
|
runCmd = &cobra.Command{
|
||||||
Use: "run CONTAINER",
|
Use: "run CONTAINER",
|
||||||
Short: "run the health check of a container",
|
Short: "Run the health check of a container",
|
||||||
Long: "run the health check of a container",
|
Long: "Run the health check of a container",
|
||||||
Example: `podman healthcheck run mywebapp`,
|
Example: `podman healthcheck run mywebapp`,
|
||||||
RunE: run,
|
RunE: run,
|
||||||
Args: cobra.ExactArgs(1),
|
Args: cobra.ExactArgs(1),
|
||||||
|
@ -19,7 +19,7 @@ var (
|
|||||||
rmDescription = "Removes one or more previously pulled or locally created images."
|
rmDescription = "Removes one or more previously pulled or locally created images."
|
||||||
rmCmd = &cobra.Command{
|
rmCmd = &cobra.Command{
|
||||||
Use: "rm [options] IMAGE [IMAGE...]",
|
Use: "rm [options] IMAGE [IMAGE...]",
|
||||||
Short: "Removes one or more images from local storage",
|
Short: "Remove one or more images from local storage",
|
||||||
Long: rmDescription,
|
Long: rmDescription,
|
||||||
RunE: rm,
|
RunE: rm,
|
||||||
ValidArgsFunction: common.AutocompleteImages,
|
ValidArgsFunction: common.AutocompleteImages,
|
||||||
|
@ -18,7 +18,7 @@ var (
|
|||||||
registry.ParentNSRequired: "",
|
registry.ParentNSRequired: "",
|
||||||
},
|
},
|
||||||
Long: saveScpDescription,
|
Long: saveScpDescription,
|
||||||
Short: "securely copy images",
|
Short: "Securely copy images",
|
||||||
RunE: scp,
|
RunE: scp,
|
||||||
Args: cobra.RangeArgs(1, 2),
|
Args: cobra.RangeArgs(1, 2),
|
||||||
ValidArgsFunction: common.AutocompleteScp,
|
ValidArgsFunction: common.AutocompleteScp,
|
||||||
|
@ -10,7 +10,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
treeDescription = "Prints layer hierarchy of an image in a tree format"
|
treeDescription = "Print layer hierarchy of an image in a tree format"
|
||||||
treeCmd = &cobra.Command{
|
treeCmd = &cobra.Command{
|
||||||
Use: "tree [options] IMAGE",
|
Use: "tree [options] IMAGE",
|
||||||
Args: cobra.ExactArgs(1),
|
Args: cobra.ExactArgs(1),
|
||||||
|
@ -19,7 +19,7 @@ var (
|
|||||||
|
|
||||||
downCmd = &cobra.Command{
|
downCmd = &cobra.Command{
|
||||||
Use: "down [options] KUBEFILE|-",
|
Use: "down [options] KUBEFILE|-",
|
||||||
Short: "Remove pods based on Kubernetes YAML.",
|
Short: "Remove pods based on Kubernetes YAML",
|
||||||
Long: downDescription,
|
Long: downDescription,
|
||||||
RunE: down,
|
RunE: down,
|
||||||
Args: cobra.ExactArgs(1),
|
Args: cobra.ExactArgs(1),
|
||||||
|
@ -50,7 +50,7 @@ var (
|
|||||||
|
|
||||||
playCmd = &cobra.Command{
|
playCmd = &cobra.Command{
|
||||||
Use: "play [options] KUBEFILE|-",
|
Use: "play [options] KUBEFILE|-",
|
||||||
Short: "Play a pod or volume based on Kubernetes YAML.",
|
Short: "Play a pod or volume based on Kubernetes YAML",
|
||||||
Long: playDescription,
|
Long: playDescription,
|
||||||
RunE: play,
|
RunE: play,
|
||||||
Args: cobra.ExactArgs(1),
|
Args: cobra.ExactArgs(1),
|
||||||
@ -65,7 +65,7 @@ var (
|
|||||||
var (
|
var (
|
||||||
playKubeCmd = &cobra.Command{
|
playKubeCmd = &cobra.Command{
|
||||||
Use: "kube [options] KUBEFILE|-",
|
Use: "kube [options] KUBEFILE|-",
|
||||||
Short: "Play a pod or volume based on Kubernetes YAML.",
|
Short: "Play a pod or volume based on Kubernetes YAML",
|
||||||
Long: playDescription,
|
Long: playDescription,
|
||||||
Hidden: true,
|
Hidden: true,
|
||||||
RunE: playKube,
|
RunE: playKube,
|
||||||
|
@ -21,8 +21,8 @@ var (
|
|||||||
loginOptions = loginOptionsWrapper{}
|
loginOptions = loginOptionsWrapper{}
|
||||||
loginCommand = &cobra.Command{
|
loginCommand = &cobra.Command{
|
||||||
Use: "login [options] [REGISTRY]",
|
Use: "login [options] [REGISTRY]",
|
||||||
Short: "Login to a container registry",
|
Short: "Log in to a container registry",
|
||||||
Long: "Login to a container registry on a specified server.",
|
Long: "Log in to a container registry on a specified server.",
|
||||||
RunE: login,
|
RunE: login,
|
||||||
Args: cobra.MaximumNArgs(1),
|
Args: cobra.MaximumNArgs(1),
|
||||||
ValidArgsFunction: common.AutocompleteRegistries,
|
ValidArgsFunction: common.AutocompleteRegistries,
|
||||||
|
@ -15,7 +15,7 @@ var (
|
|||||||
logoutOptions = auth.LogoutOptions{}
|
logoutOptions = auth.LogoutOptions{}
|
||||||
logoutCommand = &cobra.Command{
|
logoutCommand = &cobra.Command{
|
||||||
Use: "logout [options] [REGISTRY]",
|
Use: "logout [options] [REGISTRY]",
|
||||||
Short: "Logout of a container registry",
|
Short: "Log out of a container registry",
|
||||||
Long: "Remove the cached username and password for the registry.",
|
Long: "Remove the cached username and password for the registry.",
|
||||||
RunE: logout,
|
RunE: logout,
|
||||||
Args: cobra.MaximumNArgs(1),
|
Args: cobra.MaximumNArgs(1),
|
||||||
|
@ -18,7 +18,7 @@ var (
|
|||||||
initCmd = &cobra.Command{
|
initCmd = &cobra.Command{
|
||||||
Use: "init [options] [NAME]",
|
Use: "init [options] [NAME]",
|
||||||
Short: "Initialize a virtual machine",
|
Short: "Initialize a virtual machine",
|
||||||
Long: "initialize a virtual machine ",
|
Long: "Initialize a virtual machine",
|
||||||
PersistentPreRunE: rootlessOnly,
|
PersistentPreRunE: rootlessOnly,
|
||||||
RunE: initMachine,
|
RunE: initMachine,
|
||||||
Args: cobra.MaximumNArgs(1),
|
Args: cobra.MaximumNArgs(1),
|
||||||
|
@ -16,8 +16,8 @@ import (
|
|||||||
var (
|
var (
|
||||||
setCmd = &cobra.Command{
|
setCmd = &cobra.Command{
|
||||||
Use: "set [options] [NAME]",
|
Use: "set [options] [NAME]",
|
||||||
Short: "Sets a virtual machine setting",
|
Short: "Set a virtual machine setting",
|
||||||
Long: "Sets an updatable virtual machine setting",
|
Long: "Set an updatable virtual machine setting",
|
||||||
PersistentPreRunE: rootlessOnly,
|
PersistentPreRunE: rootlessOnly,
|
||||||
RunE: setMachine,
|
RunE: setMachine,
|
||||||
Args: cobra.MaximumNArgs(1),
|
Args: cobra.MaximumNArgs(1),
|
||||||
|
@ -15,7 +15,7 @@ var (
|
|||||||
networkConnectDescription = `Add container to a network`
|
networkConnectDescription = `Add container to a network`
|
||||||
networkConnectCommand = &cobra.Command{
|
networkConnectCommand = &cobra.Command{
|
||||||
Use: "connect [options] NETWORK CONTAINER",
|
Use: "connect [options] NETWORK CONTAINER",
|
||||||
Short: "network connect",
|
Short: "Add container to a network",
|
||||||
Long: networkConnectDescription,
|
Long: networkConnectDescription,
|
||||||
RunE: networkConnect,
|
RunE: networkConnect,
|
||||||
Example: `podman network connect web secondary`,
|
Example: `podman network connect web secondary`,
|
||||||
|
@ -17,10 +17,10 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
networkCreateDescription = `create networks for containers and pods`
|
networkCreateDescription = `Create networks for containers and pods`
|
||||||
networkCreateCommand = &cobra.Command{
|
networkCreateCommand = &cobra.Command{
|
||||||
Use: "create [options] [NAME]",
|
Use: "create [options] [NAME]",
|
||||||
Short: "network create",
|
Short: "Create networks for containers and pods",
|
||||||
Long: networkCreateDescription,
|
Long: networkCreateDescription,
|
||||||
RunE: networkCreate,
|
RunE: networkCreate,
|
||||||
Args: cobra.MaximumNArgs(1),
|
Args: cobra.MaximumNArgs(1),
|
||||||
|
@ -10,7 +10,7 @@ var (
|
|||||||
networkExistsDescription = `If the named network exists, podman network exists exits with 0, otherwise the exit code will be 1.`
|
networkExistsDescription = `If the named network exists, podman network exists exits with 0, otherwise the exit code will be 1.`
|
||||||
networkExistsCommand = &cobra.Command{
|
networkExistsCommand = &cobra.Command{
|
||||||
Use: "exists NETWORK",
|
Use: "exists NETWORK",
|
||||||
Short: "network exists",
|
Short: "Check if network exists",
|
||||||
Long: networkExistsDescription,
|
Long: networkExistsDescription,
|
||||||
RunE: networkExists,
|
RunE: networkExists,
|
||||||
Example: `podman network exists net1`,
|
Example: `podman network exists net1`,
|
||||||
|
@ -23,7 +23,7 @@ var (
|
|||||||
networklistCommand = &cobra.Command{
|
networklistCommand = &cobra.Command{
|
||||||
Use: "ls [options]",
|
Use: "ls [options]",
|
||||||
Args: validate.NoArgs,
|
Args: validate.NoArgs,
|
||||||
Short: "network list",
|
Short: "List networks",
|
||||||
Long: networklistDescription,
|
Long: networklistDescription,
|
||||||
RunE: networkList,
|
RunE: networkList,
|
||||||
ValidArgsFunction: completion.AutocompleteNone,
|
ValidArgsFunction: completion.AutocompleteNone,
|
||||||
|
@ -20,7 +20,7 @@ var (
|
|||||||
networkPruneDescription = `Prune unused networks`
|
networkPruneDescription = `Prune unused networks`
|
||||||
networkPruneCommand = &cobra.Command{
|
networkPruneCommand = &cobra.Command{
|
||||||
Use: "prune [options]",
|
Use: "prune [options]",
|
||||||
Short: "network prune",
|
Short: "Prune unused networks",
|
||||||
Long: networkPruneDescription,
|
Long: networkPruneDescription,
|
||||||
RunE: networkPrune,
|
RunE: networkPrune,
|
||||||
Example: `podman network prune`,
|
Example: `podman network prune`,
|
||||||
|
@ -13,7 +13,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
networkReloadDescription = `reload container networks, recreating firewall rules`
|
networkReloadDescription = `Reload container networks, recreating firewall rules`
|
||||||
networkReloadCommand = &cobra.Command{
|
networkReloadCommand = &cobra.Command{
|
||||||
Annotations: map[string]string{registry.EngineMode: registry.ABIMode},
|
Annotations: map[string]string{registry.EngineMode: registry.ABIMode},
|
||||||
Use: "reload [options] [CONTAINER...]",
|
Use: "reload [options] [CONTAINER...]",
|
||||||
|
@ -20,7 +20,7 @@ var (
|
|||||||
networkrmCommand = &cobra.Command{
|
networkrmCommand = &cobra.Command{
|
||||||
Use: "rm [options] NETWORK [NETWORK...]",
|
Use: "rm [options] NETWORK [NETWORK...]",
|
||||||
Aliases: []string{"remove"},
|
Aliases: []string{"remove"},
|
||||||
Short: "network rm",
|
Short: "Remove networks",
|
||||||
Long: networkrmDescription,
|
Long: networkrmDescription,
|
||||||
RunE: networkRm,
|
RunE: networkRm,
|
||||||
Example: `podman network rm podman`,
|
Example: `podman network rm podman`,
|
||||||
|
@ -14,7 +14,7 @@ var (
|
|||||||
networkUpdateDescription = `Update an existing podman network`
|
networkUpdateDescription = `Update an existing podman network`
|
||||||
networkUpdateCommand = &cobra.Command{
|
networkUpdateCommand = &cobra.Command{
|
||||||
Use: "update [options] NETWORK",
|
Use: "update [options] NETWORK",
|
||||||
Short: "update an existing podman network",
|
Short: "Update an existing podman network",
|
||||||
Long: networkUpdateDescription,
|
Long: networkUpdateDescription,
|
||||||
RunE: networkUpdate,
|
RunE: networkUpdate,
|
||||||
Args: cobra.ExactArgs(1),
|
Args: cobra.ExactArgs(1),
|
||||||
|
@ -16,7 +16,7 @@ var (
|
|||||||
|
|
||||||
inspectCmd = &cobra.Command{
|
inspectCmd = &cobra.Command{
|
||||||
Use: "inspect [options] POD [POD...]",
|
Use: "inspect [options] POD [POD...]",
|
||||||
Short: "Displays a pod configuration",
|
Short: "Display a pod configuration",
|
||||||
Long: inspectDescription,
|
Long: inspectDescription,
|
||||||
RunE: inspectExec,
|
RunE: inspectExec,
|
||||||
ValidArgsFunction: common.AutocompletePods,
|
ValidArgsFunction: common.AutocompletePods,
|
||||||
|
@ -10,7 +10,7 @@ var (
|
|||||||
volumeExistsDescription = `If the given volume exists, podman volume exists exits with 0, otherwise the exit code will be 1.`
|
volumeExistsDescription = `If the given volume exists, podman volume exists exits with 0, otherwise the exit code will be 1.`
|
||||||
volumeExistsCommand = &cobra.Command{
|
volumeExistsCommand = &cobra.Command{
|
||||||
Use: "exists VOLUME",
|
Use: "exists VOLUME",
|
||||||
Short: "Volume exists",
|
Short: "Check if volume exists",
|
||||||
Long: volumeExistsDescription,
|
Long: volumeExistsDescription,
|
||||||
RunE: volumeExists,
|
RunE: volumeExists,
|
||||||
Example: `podman volume exists myvol`,
|
Example: `podman volume exists myvol`,
|
||||||
|
@ -17,7 +17,7 @@ var (
|
|||||||
reloadCommand = &cobra.Command{
|
reloadCommand = &cobra.Command{
|
||||||
Use: "reload",
|
Use: "reload",
|
||||||
Args: validate.NoArgs,
|
Args: validate.NoArgs,
|
||||||
Short: "reload all volumes from volume plugins",
|
Short: "Reload all volumes from volume plugins",
|
||||||
Long: reloadDescription,
|
Long: reloadDescription,
|
||||||
RunE: reload,
|
RunE: reload,
|
||||||
ValidArgsFunction: completion.AutocompleteNone,
|
ValidArgsFunction: completion.AutocompleteNone,
|
||||||
|
@ -10,12 +10,12 @@
|
|||||||
| [podman-build(1)](https://podman.readthedocs.io/en/latest/markdown/podman-build.1.html) | Build a container image using a Containerfile |
|
| [podman-build(1)](https://podman.readthedocs.io/en/latest/markdown/podman-build.1.html) | Build a container image using a Containerfile |
|
||||||
| [podman-commit(1)](https://podman.readthedocs.io/en/latest/markdown/podman-commit.1.html) | Create new image based on the changed container |
|
| [podman-commit(1)](https://podman.readthedocs.io/en/latest/markdown/podman-commit.1.html) | Create new image based on the changed container |
|
||||||
| [podman-container(1)](https://podman.readthedocs.io/en/latest/managecontainers.html) | Manage Containers |
|
| [podman-container(1)](https://podman.readthedocs.io/en/latest/managecontainers.html) | Manage Containers |
|
||||||
| [podman-container-checkpoint(1)](https://podman.readthedocs.io/en/latest/markdown/podman-container-checkpoint.1.html) | Checkpoints one or more running containers |
|
| [podman-container-checkpoint(1)](https://podman.readthedocs.io/en/latest/markdown/podman-container-checkpoint.1.html) | Checkpoint one or more running containers |
|
||||||
| [podman-container-cleanup(1)](https://podman.readthedocs.io/en/latest/markdown/podman-container-cleanup.1.html) | Clean up the container's network and mountpoints |
|
| [podman-container-cleanup(1)](https://podman.readthedocs.io/en/latest/markdown/podman-container-cleanup.1.html) | Clean up the container's network and mountpoints |
|
||||||
| [podman-container-exists(1)](https://podman.readthedocs.io/en/latest/markdown/podman-container-exists.1.html) | Check if a container exists in local storage |
|
| [podman-container-exists(1)](https://podman.readthedocs.io/en/latest/markdown/podman-container-exists.1.html) | Check if a container exists in local storage |
|
||||||
| [podman-container-prune(1)](https://podman.readthedocs.io/en/latest/markdown/podman-container-prune.1.html) | Remove all stopped containers from local storage |
|
| [podman-container-prune(1)](https://podman.readthedocs.io/en/latest/markdown/podman-container-prune.1.html) | Remove all stopped containers from local storage |
|
||||||
| [podman-container-restore(1)](https://podman.readthedocs.io/en/latest/markdown/podman-container-restore.1.html) | Restores one or more containers from a checkpoint |
|
| [podman-container-restore(1)](https://podman.readthedocs.io/en/latest/markdown/podman-container-restore.1.html) | Restore one or more containers from a checkpoint |
|
||||||
| [podman-container-runlabel(1)](https://podman.readthedocs.io/en/latest/markdown/podman-container-runlabel.1.html) | Executes a command as described by a container image label |
|
| [podman-container-runlabel(1)](https://podman.readthedocs.io/en/latest/markdown/podman-container-runlabel.1.html) | Execute a command as described by a container image label |
|
||||||
| [podman-cp(1)](https://podman.readthedocs.io/en/latest/markdown/podman-cp.1.html) | Copy files/folders between a container and the local filesystem |
|
| [podman-cp(1)](https://podman.readthedocs.io/en/latest/markdown/podman-cp.1.html) | Copy files/folders between a container and the local filesystem |
|
||||||
| [podman-create(1)](https://podman.readthedocs.io/en/latest/markdown/podman-create.1.html) | Create a new container |
|
| [podman-create(1)](https://podman.readthedocs.io/en/latest/markdown/podman-create.1.html) | Create a new container |
|
||||||
| [podman-diff(1)](https://podman.readthedocs.io/en/latest/markdown/podman-diff.1.html) | Inspect changes on a container or image's filesystem |
|
| [podman-diff(1)](https://podman.readthedocs.io/en/latest/markdown/podman-diff.1.html) | Inspect changes on a container or image's filesystem |
|
||||||
@ -25,31 +25,31 @@
|
|||||||
| [podman-generate(1)](https://podman.readthedocs.io/en/latest/generate.html) | Generate structured output based on Podman containers and pods |
|
| [podman-generate(1)](https://podman.readthedocs.io/en/latest/generate.html) | Generate structured output based on Podman containers and pods |
|
||||||
| [podman-generate-kube(1)](https://podman.readthedocs.io/en/latest/markdown/podman-generate-kube.1.html) | Generate Kubernetes YAML based on a pod or container |
|
| [podman-generate-kube(1)](https://podman.readthedocs.io/en/latest/markdown/podman-generate-kube.1.html) | Generate Kubernetes YAML based on a pod or container |
|
||||||
| [podman-generate-systemd(1)](https://podman.readthedocs.io/en/latest/markdown/podman-generate-systemd.1.html) | Generate systemd unit file(s) for a container or pod. Not supported for the remote client |
|
| [podman-generate-systemd(1)](https://podman.readthedocs.io/en/latest/markdown/podman-generate-systemd.1.html) | Generate systemd unit file(s) for a container or pod. Not supported for the remote client |
|
||||||
| [podman-history(1)](https://podman.readthedocs.io/en/latest/markdown/podman-history.1.html) | Shows the history of an image |
|
| [podman-history(1)](https://podman.readthedocs.io/en/latest/markdown/podman-history.1.html) | Show the history of an image |
|
||||||
| [podman-image(1)](https://podman.readthedocs.io/en/latest/image.html) | Manage Images |
|
| [podman-image(1)](https://podman.readthedocs.io/en/latest/image.html) | Manage Images |
|
||||||
| [podman-image-diff(1)](https://podman.readthedocs.io/en/latest/markdown/podman-image-diff.html) | Inspect changes on an image's filesystem. |
|
| [podman-image-diff(1)](https://podman.readthedocs.io/en/latest/markdown/podman-image-diff.html) | Inspect changes on an image's filesystem. |
|
||||||
| [podman-image-exists(1)](https://podman.readthedocs.io/en/latest/markdown/podman-image-exists.1.html) | Check if an image exists in local storage |
|
| [podman-image-exists(1)](https://podman.readthedocs.io/en/latest/markdown/podman-image-exists.1.html) | Check if an image exists in local storage |
|
||||||
| [podman-image-prune(1)](https://podman.readthedocs.io/en/latest/markdown/podman-image-prune.1.html) | Remove all unused images from the local store |
|
| [podman-image-prune(1)](https://podman.readthedocs.io/en/latest/markdown/podman-image-prune.1.html) | Remove all unused images from the local store |
|
||||||
| [podman-image-search(1)](https://podman.readthedocs.io/en/latest/markdown/podman-search.1.html) | Search a registry for an image. |
|
| [podman-image-search(1)](https://podman.readthedocs.io/en/latest/markdown/podman-search.1.html) | Search a registry for an image. |
|
||||||
| [podman-image-sign(1)](https://podman.readthedocs.io/en/latest/markdown/podman-image-sign.1.html) | Create a signature for an image |
|
| [podman-image-sign(1)](https://podman.readthedocs.io/en/latest/markdown/podman-image-sign.1.html) | Create a signature for an image |
|
||||||
| [podman-image-tree(1)](https://podman.readthedocs.io/en/latest/markdown/podman-image-tree.1.html) | Prints layer hierarchy of an image in a tree format |
|
| [podman-image-tree(1)](https://podman.readthedocs.io/en/latest/markdown/podman-image-tree.1.html) | Print layer hierarchy of an image in a tree format |
|
||||||
| [podman-image-trust(1)](https://podman.readthedocs.io/en/latest/markdown/podman-image-trust.1.html) | Manage container registry image trust policy |
|
| [podman-image-trust(1)](https://podman.readthedocs.io/en/latest/markdown/podman-image-trust.1.html) | Manage container registry image trust policy |
|
||||||
| [podman-images(1)](https://podman.readthedocs.io/en/latest/markdown/podman-images.1.html) | List images in local storage | [](https://podman.io/asciinema/podman/images/) | [Here](https://github.com/containers/Demos/blob/main/podman_cli/podman_images.sh) |
|
| [podman-images(1)](https://podman.readthedocs.io/en/latest/markdown/podman-images.1.html) | List images in local storage | [](https://podman.io/asciinema/podman/images/) | [Here](https://github.com/containers/Demos/blob/main/podman_cli/podman_images.sh) |
|
||||||
| [podman-import(1)](https://podman.readthedocs.io/en/latest/markdown/podman-import.1.html) | Import a tarball and save it as a filesystem image |
|
| [podman-import(1)](https://podman.readthedocs.io/en/latest/markdown/podman-import.1.html) | Import a tarball and save it as a filesystem image |
|
||||||
| [podman-info(1)](https://podman.readthedocs.io/en/latest/markdown/podman-info.1.html) | Displays Podman related system information |
|
| [podman-info(1)](https://podman.readthedocs.io/en/latest/markdown/podman-info.1.html) | Display Podman related system information |
|
||||||
| [podman-init(1)](https://podman.readthedocs.io/en/latest/markdown/podman-init.1.html) | Initialize one or more containers |
|
| [podman-init(1)](https://podman.readthedocs.io/en/latest/markdown/podman-init.1.html) | Initialize one or more containers |
|
||||||
| [podman-inspect(1)](https://podman.readthedocs.io/en/latest/markdown/podman-inspect.1.html) | Display a container or image's configuration | [](https://podman.io/asciinema/podman/inspect/) | [Here](https://github.com/containers/Demos/blob/main/podman_cli/podman_inspect.sh) |
|
| [podman-inspect(1)](https://podman.readthedocs.io/en/latest/markdown/podman-inspect.1.html) | Display a container or image's configuration | [](https://podman.io/asciinema/podman/inspect/) | [Here](https://github.com/containers/Demos/blob/main/podman_cli/podman_inspect.sh) |
|
||||||
| [podman-kill(1)](https://podman.readthedocs.io/en/latest/markdown/podman-kill.1.html) | Kill the main process in one or more running containers |
|
| [podman-kill(1)](https://podman.readthedocs.io/en/latest/markdown/podman-kill.1.html) | Kill the main process in one or more running containers |
|
||||||
| [podman-load(1)](https://podman.readthedocs.io/en/latest/markdown/podman-load.1.html) | Load an image from a container image archive into container storage |
|
| [podman-load(1)](https://podman.readthedocs.io/en/latest/markdown/podman-load.1.html) | Load an image from a container image archive into container storage |
|
||||||
| [podman-login(1)](https://podman.readthedocs.io/en/latest/markdown/podman-login.1.html) | Login to a container registry |
|
| [podman-login(1)](https://podman.readthedocs.io/en/latest/markdown/podman-login.1.html) | Log in to a container registry |
|
||||||
| [podman-logout(1)](https://podman.readthedocs.io/en/latest/markdown/podman-logout.1.html) | Logout of a container registry |
|
| [podman-logout(1)](https://podman.readthedocs.io/en/latest/markdown/podman-logout.1.html) | Log out of a container registry |
|
||||||
| [podman-logs(1)](https://podman.readthedocs.io/en/latest/markdown/podman-logs.1.html) | Display the logs of one or more containers |
|
| [podman-logs(1)](https://podman.readthedocs.io/en/latest/markdown/podman-logs.1.html) | Display the logs of one or more containers |
|
||||||
| [podman-mount(1)](https://podman.readthedocs.io/en/latest/markdown/podman-mount.1.html) | Mount a working container's root filesystem |
|
| [podman-mount(1)](https://podman.readthedocs.io/en/latest/markdown/podman-mount.1.html) | Mount a working container's root filesystem |
|
||||||
| [podman-network(1)](https://podman.readthedocs.io/en/latest/network.html) | Manage Podman networks |
|
| [podman-network(1)](https://podman.readthedocs.io/en/latest/network.html) | Manage Podman networks |
|
||||||
| [podman-network-create(1)](https://podman.readthedocs.io/en/latest/markdown/podman-network-create.1.html) | Create a network |
|
| [podman-network-create(1)](https://podman.readthedocs.io/en/latest/markdown/podman-network-create.1.html) | Create a network |
|
||||||
| [podman-network-connect(1)](https://podman.readthedocs.io/en/latest/markdown/podman-network-connect.1.html) | Connect a container to a network |
|
| [podman-network-connect(1)](https://podman.readthedocs.io/en/latest/markdown/podman-network-connect.1.html) | Connect a container to a network |
|
||||||
| [podman-network-disconnect(1)](https://podman.readthedocs.io/en/latest/markdown/podman-network-disconnect.1.html) | Disconnect a container from a network |
|
| [podman-network-disconnect(1)](https://podman.readthedocs.io/en/latest/markdown/podman-network-disconnect.1.html) | Disconnect a container from a network |
|
||||||
| [podman-network-inspect(1)](https://podman.readthedocs.io/en/latest/markdown/podman-network-inspect.1.html) | Displays the network configuration for one or more networks |
|
| [podman-network-inspect(1)](https://podman.readthedocs.io/en/latest/markdown/podman-network-inspect.1.html) | Display the network configuration for one or more networks |
|
||||||
| [podman-network-ls(1)](https://podman.readthedocs.io/en/latest/markdown/podman-network-ls.1.html) | Display a summary of networks |
|
| [podman-network-ls(1)](https://podman.readthedocs.io/en/latest/markdown/podman-network-ls.1.html) | Display a summary of networks |
|
||||||
| [podman-network-rm(1)](https://podman.readthedocs.io/en/latest/markdown/podman-network-rm.1.html) | Remove one or more networks |
|
| [podman-network-rm(1)](https://podman.readthedocs.io/en/latest/markdown/podman-network-rm.1.html) | Remove one or more networks |
|
||||||
| [podman-pause(1)](https://podman.readthedocs.io/en/latest/markdown/podman-pause.1.html) | Pause one or more running containers | [](https://podman.io/asciinema/podman/pause_unpause/) | [Here](https://github.com/containers/Demos/blob/main/podman_cli/podman_pause_unpause.sh) |
|
| [podman-pause(1)](https://podman.readthedocs.io/en/latest/markdown/podman-pause.1.html) | Pause one or more running containers | [](https://podman.io/asciinema/podman/pause_unpause/) | [Here](https://github.com/containers/Demos/blob/main/podman_cli/podman_pause_unpause.sh) |
|
||||||
@ -58,11 +58,11 @@
|
|||||||
| [podman-pod(1)](https://podman.readthedocs.io/en/latest/pod.html) | Manage pods |
|
| [podman-pod(1)](https://podman.readthedocs.io/en/latest/pod.html) | Manage pods |
|
||||||
| [podman-pod-create(1)](https://podman.readthedocs.io/en/latest/markdown/podman-pod-create.1.html) | Create a new pod |
|
| [podman-pod-create(1)](https://podman.readthedocs.io/en/latest/markdown/podman-pod-create.1.html) | Create a new pod |
|
||||||
| [podman-pod-exists(1)](https://podman.readthedocs.io/en/latest/markdown/podman-pod-exists.1.html) | Check if a pod exists in local storage |
|
| [podman-pod-exists(1)](https://podman.readthedocs.io/en/latest/markdown/podman-pod-exists.1.html) | Check if a pod exists in local storage |
|
||||||
| [podman-pod-inspect(1)](https://podman.readthedocs.io/en/latest/markdown/podman-pod-inspect.1.html) | Displays information describing a pod |
|
| [podman-pod-inspect(1)](https://podman.readthedocs.io/en/latest/markdown/podman-pod-inspect.1.html) | Display information describing a pod |
|
||||||
| [podman-pod-kill(1)](https://podman.readthedocs.io/en/latest/markdown/podman-pod-kill.1.html) | Kill the main process of each container in one or more pods |
|
| [podman-pod-kill(1)](https://podman.readthedocs.io/en/latest/markdown/podman-pod-kill.1.html) | Kill the main process of each container in one or more pods |
|
||||||
| [podman-pod-pause(1)](https://podman.readthedocs.io/en/latest/markdown/podman-pause.1.html) | Pause one or more containers |
|
| [podman-pod-pause(1)](https://podman.readthedocs.io/en/latest/markdown/podman-pause.1.html) | Pause one or more containers |
|
||||||
| [podman-pod-prune(1)](https://podman.readthedocs.io/en/latest/markdown/podman-pod-prune.1.html) | Remove all stopped pods and their containers |
|
| [podman-pod-prune(1)](https://podman.readthedocs.io/en/latest/markdown/podman-pod-prune.1.html) | Remove all stopped pods and their containers |
|
||||||
| [podman-pod-ps(1)](https://podman.readthedocs.io/en/latest/markdown/podman-pod-ps.1.html) | Prints out information about pods |
|
| [podman-pod-ps(1)](https://podman.readthedocs.io/en/latest/markdown/podman-pod-ps.1.html) | Print out information about pods |
|
||||||
| [podman-pod-restart](https://podman.readthedocs.io/en/latest/markdown/podman-pod-restart.1.html) | Restart one or more pods |
|
| [podman-pod-restart](https://podman.readthedocs.io/en/latest/markdown/podman-pod-restart.1.html) | Restart one or more pods |
|
||||||
| [podman-pod-rm(1)](https://podman.readthedocs.io/en/latest/markdown/podman-pod-rm.1.html) | Remove one or more stopped pods and containers |
|
| [podman-pod-rm(1)](https://podman.readthedocs.io/en/latest/markdown/podman-pod-rm.1.html) | Remove one or more stopped pods and containers |
|
||||||
| [podman-pod-start(1)](https://podman.readthedocs.io/en/latest/markdown/podman-pod-start.1.html) | Start one or more pods |
|
| [podman-pod-start(1)](https://podman.readthedocs.io/en/latest/markdown/podman-pod-start.1.html) | Start one or more pods |
|
||||||
@ -71,12 +71,12 @@
|
|||||||
| [podman-pod-top(1)](https://podman.readthedocs.io/en/latest/markdown/podman-pod-top.1.html) | Display the running processes of containers in a pod |
|
| [podman-pod-top(1)](https://podman.readthedocs.io/en/latest/markdown/podman-pod-top.1.html) | Display the running processes of containers in a pod |
|
||||||
| [podman-pod-unpause(1)](https://podman.readthedocs.io/en/latest/markdown/podman-pod-unpause.1.html) | Unpause one or more pods. |
|
| [podman-pod-unpause(1)](https://podman.readthedocs.io/en/latest/markdown/podman-pod-unpause.1.html) | Unpause one or more pods. |
|
||||||
| [podman-port(1)](https://podman.readthedocs.io/en/latest/markdown/podman-port.1.html) | List port mappings for a container |
|
| [podman-port(1)](https://podman.readthedocs.io/en/latest/markdown/podman-port.1.html) | List port mappings for a container |
|
||||||
| [podman-ps(1)](https://podman.readthedocs.io/en/latest/markdown/podman-ps.1.html) | Prints out information about containers |
|
| [podman-ps(1)](https://podman.readthedocs.io/en/latest/markdown/podman-ps.1.html) | Print out information about containers |
|
||||||
| [podman-pull(1)](https://podman.readthedocs.io/en/latest/markdown/podman-pull.1.html) | Pull an image from a registry |
|
| [podman-pull(1)](https://podman.readthedocs.io/en/latest/markdown/podman-pull.1.html) | Pull an image from a registry |
|
||||||
| [podman-push(1)](https://podman.readthedocs.io/en/latest/markdown/podman-push.1.html) | Push an image from local storage to elsewhere | [](https://asciinema.org/a/133276) |
|
| [podman-push(1)](https://podman.readthedocs.io/en/latest/markdown/podman-push.1.html) | Push an image from local storage to elsewhere | [](https://asciinema.org/a/133276) |
|
||||||
| [podman-restart(1)](https://podman.readthedocs.io/en/latest/markdown/podman-restart.1.html) | Restarts one or more containers | [](https://asciinema.org/a/jiqxJAxcVXw604xdzMLTkQvHM) |
|
| [podman-restart(1)](https://podman.readthedocs.io/en/latest/markdown/podman-restart.1.html) | Restart one or more containers | [](https://asciinema.org/a/jiqxJAxcVXw604xdzMLTkQvHM) |
|
||||||
| [podman-rm(1)](https://podman.readthedocs.io/en/latest/markdown/podman-rm.1.html) | Removes one or more containers |
|
| [podman-rm(1)](https://podman.readthedocs.io/en/latest/markdown/podman-rm.1.html) | Remove one or more containers |
|
||||||
| [podman-rmi(1)](https://podman.readthedocs.io/en/latest/markdown/podman-rmi.1.html) | Removes one or more locally stored images |
|
| [podman-rmi(1)](https://podman.readthedocs.io/en/latest/markdown/podman-rmi.1.html) | Remove one or more locally stored images |
|
||||||
| [podman-run(1)](https://podman.readthedocs.io/en/latest/markdown/podman-run.1.html) | Run a command in a new container |
|
| [podman-run(1)](https://podman.readthedocs.io/en/latest/markdown/podman-run.1.html) | Run a command in a new container |
|
||||||
| [podman-save(1)](https://podman.readthedocs.io/en/latest/markdown/podman-save.1.html) | Save an image to a container archive |
|
| [podman-save(1)](https://podman.readthedocs.io/en/latest/markdown/podman-save.1.html) | Save an image to a container archive |
|
||||||
| [podman-search(1)](https://podman.readthedocs.io/en/latest/markdown/podman-search.1.html) | Search a registry for an image |
|
| [podman-search(1)](https://podman.readthedocs.io/en/latest/markdown/podman-search.1.html) | Search a registry for an image |
|
||||||
@ -90,8 +90,8 @@
|
|||||||
| [podman-stop(1)](https://podman.readthedocs.io/en/latest/markdown/podman-stop.1.html) | Stops one or more running containers |
|
| [podman-stop(1)](https://podman.readthedocs.io/en/latest/markdown/podman-stop.1.html) | Stops one or more running containers |
|
||||||
| [podman-system(1)](https://podman.readthedocs.io/en/latest/system.html) | Manage podman |
|
| [podman-system(1)](https://podman.readthedocs.io/en/latest/system.html) | Manage podman |
|
||||||
| [podman-system-df(1)](https://podman.readthedocs.io/en/latest/markdown/podman-system-df.1.html) | Show podman disk usage. |
|
| [podman-system-df(1)](https://podman.readthedocs.io/en/latest/markdown/podman-system-df.1.html) | Show podman disk usage. |
|
||||||
| [podman-system-events(1)](https://podman.readthedocs.io/en/latest/markdown/podman-events.1.html) | Displays Podman related system events. |
|
| [podman-system-events(1)](https://podman.readthedocs.io/en/latest/markdown/podman-events.1.html) | Display Podman related system events. |
|
||||||
| [podman-system-info(1)](https://podman.readthedocs.io/en/latest/markdown/podman-info.1.html) | Displays Podman related system information. |
|
| [podman-system-info(1)](https://podman.readthedocs.io/en/latest/markdown/podman-info.1.html) | Display Podman related system information. |
|
||||||
| [podman-system-migrate(1)](https://podman.readthedocs.io/en/latest/markdown/podman-system-migrate.1.html) | Migrate existing containers to a new podman version |
|
| [podman-system-migrate(1)](https://podman.readthedocs.io/en/latest/markdown/podman-system-migrate.1.html) | Migrate existing containers to a new podman version |
|
||||||
| [podman-system-prune(1)](https://podman.readthedocs.io/en/latest/markdown/podman-system-prune.1.html) | Remove all unused container, image and volume data |
|
| [podman-system-prune(1)](https://podman.readthedocs.io/en/latest/markdown/podman-system-prune.1.html) | Remove all unused container, image and volume data |
|
||||||
| [podman-system-renumber(1)](https://podman.readthedocs.io/en/latest/markdown/podman-system-renumber.1.html) | Migrate lock numbers to handle a change in maximum number of locks |
|
| [podman-system-renumber(1)](https://podman.readthedocs.io/en/latest/markdown/podman-system-renumber.1.html) | Migrate lock numbers to handle a change in maximum number of locks |
|
||||||
|
@ -51,9 +51,9 @@ Commands
|
|||||||
|
|
||||||
:doc:`load <markdown/podman-load.1>` Load an image from container archive
|
:doc:`load <markdown/podman-load.1>` Load an image from container archive
|
||||||
|
|
||||||
:doc:`login <markdown/podman-login.1>` Login to a container registry
|
:doc:`login <markdown/podman-login.1>` Log in to a container registry
|
||||||
|
|
||||||
:doc:`logout <markdown/podman-logout.1>` Logout of a container registry
|
:doc:`logout <markdown/podman-logout.1>` Log out of a container registry
|
||||||
|
|
||||||
:doc:`logs <markdown/podman-logs.1>` Fetch the logs of a container
|
:doc:`logs <markdown/podman-logs.1>` Fetch the logs of a container
|
||||||
|
|
||||||
@ -83,7 +83,7 @@ Commands
|
|||||||
|
|
||||||
:doc:`rm <markdown/podman-rm.1>` Remove one or more containers
|
:doc:`rm <markdown/podman-rm.1>` Remove one or more containers
|
||||||
|
|
||||||
:doc:`rmi <markdown/podman-rmi.1>` Removes one or more images from local storage
|
:doc:`rmi <markdown/podman-rmi.1>` Remove one or more images from local storage
|
||||||
|
|
||||||
:doc:`run <markdown/podman-run.1>` Run a command in a new container
|
:doc:`run <markdown/podman-run.1>` Run a command in a new container
|
||||||
|
|
||||||
@ -105,13 +105,13 @@ Commands
|
|||||||
|
|
||||||
:doc:`top <markdown/podman-top.1>` Display the running processes of a container
|
:doc:`top <markdown/podman-top.1>` Display the running processes of a container
|
||||||
|
|
||||||
:doc:`unmount <markdown/podman-unmount.1>` Unmounts working container's root filesystem
|
:doc:`unmount <markdown/podman-unmount.1>` Unmount working container's root filesystem
|
||||||
|
|
||||||
:doc:`unpause <markdown/podman-unpause.1>` Unpause the processes in one or more containers
|
:doc:`unpause <markdown/podman-unpause.1>` Unpause the processes in one or more containers
|
||||||
|
|
||||||
:doc:`unshare <markdown/podman-unshare.1>` Run a command in a modified user namespace
|
:doc:`unshare <markdown/podman-unshare.1>` Run a command in a modified user namespace
|
||||||
|
|
||||||
:doc:`untag <markdown/podman-untag.1>` Removes one or more names from a locally-stored image
|
:doc:`untag <markdown/podman-untag.1>` Remove one or more names from a locally-stored image
|
||||||
|
|
||||||
:doc:`version <markdown/podman-version.1>` Display the Podman Version Information
|
:doc:`version <markdown/podman-version.1>` Display the Podman Version Information
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
% podman-container-checkpoint 1
|
% podman-container-checkpoint 1
|
||||||
|
|
||||||
## NAME
|
## NAME
|
||||||
podman\-container\-checkpoint - Checkpoints one or more running containers
|
podman\-container\-checkpoint - Checkpoint one or more running containers
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman container checkpoint** [*options*] *container* [*container* ...]
|
**podman container checkpoint** [*options*] *container* [*container* ...]
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
% podman-container-clone 1
|
% podman-container-clone 1
|
||||||
|
|
||||||
## NAME
|
## NAME
|
||||||
podman\-container\-clone - Creates a copy of an existing container
|
podman\-container\-clone - Create a copy of an existing container
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman container clone** [*options*] *container* *name* *image*
|
**podman container clone** [*options*] *container* *name* *image*
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
% podman-container-restore 1
|
% podman-container-restore 1
|
||||||
|
|
||||||
## NAME
|
## NAME
|
||||||
podman\-container\-restore - Restores one or more containers from a checkpoint
|
podman\-container\-restore - Restore one or more containers from a checkpoint
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman container restore** [*options*] *name* [...]
|
**podman container restore** [*options*] *name* [...]
|
||||||
@ -160,7 +160,7 @@ connections.\
|
|||||||
The default is **false**.
|
The default is **false**.
|
||||||
|
|
||||||
## EXAMPLE
|
## EXAMPLE
|
||||||
Restores the container "mywebserver".
|
Restore the container "mywebserver".
|
||||||
```
|
```
|
||||||
# podman container restore mywebserver
|
# podman container restore mywebserver
|
||||||
```
|
```
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
% podman-container-runlabel 1
|
% podman-container-runlabel 1
|
||||||
|
|
||||||
## NAME
|
## NAME
|
||||||
podman-container-runlabel - Executes a command as described by a container-image label
|
podman-container-runlabel - Execute a command as described by a container-image label
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman container runlabel** [*options*] *label* *image* [*arg...*]
|
**podman container runlabel** [*options*] *label* *image* [*arg...*]
|
||||||
|
@ -14,9 +14,9 @@ The container command allows management of containers
|
|||||||
| Command | Man Page | Description |
|
| Command | Man Page | Description |
|
||||||
| --------- | --------------------------------------------------- | ---------------------------------------------------------------------------- |
|
| --------- | --------------------------------------------------- | ---------------------------------------------------------------------------- |
|
||||||
| attach | [podman-attach(1)](podman-attach.1.md) | Attach to a running container. |
|
| attach | [podman-attach(1)](podman-attach.1.md) | Attach to a running container. |
|
||||||
| checkpoint | [podman-container-checkpoint(1)](podman-container-checkpoint.1.md) | Checkpoints one or more running containers. |
|
| checkpoint | [podman-container-checkpoint(1)](podman-container-checkpoint.1.md) | Checkpoint one or more running containers. |
|
||||||
| cleanup | [podman-container-cleanup(1)](podman-container-cleanup.1.md) | Clean up the container's network and mountpoints. |
|
| cleanup | [podman-container-cleanup(1)](podman-container-cleanup.1.md) | Clean up the container's network and mountpoints. |
|
||||||
| clone | [podman-container-clone(1)](podman-container-clone.1.md) | Creates a copy of an existing container. |
|
| clone | [podman-container-clone(1)](podman-container-clone.1.md) | Create a copy of an existing container. |
|
||||||
| commit | [podman-commit(1)](podman-commit.1.md) | Create new image based on the changed container. |
|
| commit | [podman-commit(1)](podman-commit.1.md) | Create new image based on the changed container. |
|
||||||
| cp | [podman-cp(1)](podman-cp.1.md) | Copy files/folders between a container and the local filesystem. |
|
| cp | [podman-cp(1)](podman-cp.1.md) | Copy files/folders between a container and the local filesystem. |
|
||||||
| create | [podman-create(1)](podman-create.1.md) | Create a new container. |
|
| create | [podman-create(1)](podman-create.1.md) | Create a new container. |
|
||||||
@ -33,20 +33,20 @@ The container command allows management of containers
|
|||||||
| pause | [podman-pause(1)](podman-pause.1.md) | Pause one or more containers. |
|
| pause | [podman-pause(1)](podman-pause.1.md) | Pause one or more containers. |
|
||||||
| port | [podman-port(1)](podman-port.1.md) | List port mappings for the container. |
|
| port | [podman-port(1)](podman-port.1.md) | List port mappings for the container. |
|
||||||
| prune | [podman-container-prune(1)](podman-container-prune.1.md)| Remove all stopped containers from local storage. |
|
| prune | [podman-container-prune(1)](podman-container-prune.1.md)| Remove all stopped containers from local storage. |
|
||||||
| ps | [podman-ps(1)](podman-ps.1.md) | Prints out information about containers. |
|
| ps | [podman-ps(1)](podman-ps.1.md) | Print out information about containers. |
|
||||||
| rename | [podman-rename(1)](podman-rename.1.md) | Rename an existing container. |
|
| rename | [podman-rename(1)](podman-rename.1.md) | Rename an existing container. |
|
||||||
| restart | [podman-restart(1)](podman-restart.1.md) | Restart one or more containers. |
|
| restart | [podman-restart(1)](podman-restart.1.md) | Restart one or more containers. |
|
||||||
| restore | [podman-container-restore(1)](podman-container-restore.1.md) | Restores one or more containers from a checkpoint. |
|
| restore | [podman-container-restore(1)](podman-container-restore.1.md) | Restore one or more containers from a checkpoint. |
|
||||||
| rm | [podman-rm(1)](podman-rm.1.md) | Remove one or more containers. |
|
| rm | [podman-rm(1)](podman-rm.1.md) | Remove one or more containers. |
|
||||||
| run | [podman-run(1)](podman-run.1.md) | Run a command in a container. |
|
| run | [podman-run(1)](podman-run.1.md) | Run a command in a container. |
|
||||||
| runlabel | [podman-container-runlabel(1)](podman-container-runlabel.1.md) | Executes a command as described by a container-image label. |
|
| runlabel | [podman-container-runlabel(1)](podman-container-runlabel.1.md) | Execute a command as described by a container-image label. |
|
||||||
| start | [podman-start(1)](podman-start.1.md) | Starts one or more containers. |
|
| start | [podman-start(1)](podman-start.1.md) | Start one or more containers. |
|
||||||
| stats | [podman-stats(1)](podman-stats.1.md) | Display a live stream of one or more container's resource usage statistics. |
|
| stats | [podman-stats(1)](podman-stats.1.md) | Display a live stream of one or more container's resource usage statistics. |
|
||||||
| stop | [podman-stop(1)](podman-stop.1.md) | Stop one or more running containers. |
|
| stop | [podman-stop(1)](podman-stop.1.md) | Stop one or more running containers. |
|
||||||
| top | [podman-top(1)](podman-top.1.md) | Display the running processes of a container. |
|
| top | [podman-top(1)](podman-top.1.md) | Display the running processes of a container. |
|
||||||
| unmount | [podman-unmount(1)](podman-unmount.1.md) | Unmount a working container's root filesystem.(Alias unmount) |
|
| unmount | [podman-unmount(1)](podman-unmount.1.md) | Unmount a working container's root filesystem.(Alias unmount) |
|
||||||
| unpause | [podman-unpause(1)](podman-unpause.1.md) | Unpause one or more containers. |
|
| unpause | [podman-unpause(1)](podman-unpause.1.md) | Unpause one or more containers. |
|
||||||
| update | [podman-update(1)](podman-update.1.md) | Updates the cgroup configuration of a given container. |
|
| update | [podman-update(1)](podman-update.1.md) | Update the cgroup configuration of a given container. |
|
||||||
| wait | [podman-wait(1)](podman-wait.1.md) | Wait on one or more containers to stop and print their exit codes. |
|
| wait | [podman-wait(1)](podman-wait.1.md) | Wait on one or more containers to stop and print their exit codes. |
|
||||||
|
|
||||||
## SEE ALSO
|
## SEE ALSO
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
% podman-image-tree 1
|
% podman-image-tree 1
|
||||||
|
|
||||||
## NAME
|
## NAME
|
||||||
podman\-image\-tree - Prints layer hierarchy of an image in a tree format
|
podman\-image\-tree - Print layer hierarchy of an image in a tree format
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman image tree** [*options*] *image:tag*|*image-id*
|
**podman image tree** [*options*] *image:tag*|*image-id*
|
||||||
|
@ -25,16 +25,16 @@ The image command allows the management of images
|
|||||||
| prune | [podman-image-prune(1)](podman-image-prune.1.md) | Remove all unused images from the local store. |
|
| prune | [podman-image-prune(1)](podman-image-prune.1.md) | Remove all unused images from the local store. |
|
||||||
| pull | [podman-pull(1)](podman-pull.1.md) | Pull an image from a registry. |
|
| pull | [podman-pull(1)](podman-pull.1.md) | Pull an image from a registry. |
|
||||||
| push | [podman-push(1)](podman-push.1.md) | Push an image from local storage to elsewhere. |
|
| push | [podman-push(1)](podman-push.1.md) | Push an image from local storage to elsewhere. |
|
||||||
| rm | [podman-rmi(1)](podman-rmi.1.md) | Removes one or more locally stored images. |
|
| rm | [podman-rmi(1)](podman-rmi.1.md) | Remove one or more locally stored images. |
|
||||||
| save | [podman-save(1)](podman-save.1.md) | Save an image to docker-archive or oci. |
|
| save | [podman-save(1)](podman-save.1.md) | Save an image to docker-archive or oci. |
|
||||||
| scp | [podman-image-scp(1)](podman-image-scp.1.md) | Securely copy an image from one host to another. |
|
| scp | [podman-image-scp(1)](podman-image-scp.1.md) | Securely copy an image from one host to another. |
|
||||||
| search | [podman-search(1)](podman-search.1.md) | Search a registry for an image. |
|
| search | [podman-search(1)](podman-search.1.md) | Search a registry for an image. |
|
||||||
| sign | [podman-image-sign(1)](podman-image-sign.1.md) | Create a signature for an image. |
|
| sign | [podman-image-sign(1)](podman-image-sign.1.md) | Create a signature for an image. |
|
||||||
| tag | [podman-tag(1)](podman-tag.1.md) | Add an additional name to a local image. |
|
| tag | [podman-tag(1)](podman-tag.1.md) | Add an additional name to a local image. |
|
||||||
| tree | [podman-image-tree(1)](podman-image-tree.1.md) | Prints layer hierarchy of an image in a tree format. |
|
| tree | [podman-image-tree(1)](podman-image-tree.1.md) | Print layer hierarchy of an image in a tree format. |
|
||||||
| trust | [podman-image-trust(1)](podman-image-trust.1.md) | Manage container registry image trust policy. |
|
| trust | [podman-image-trust(1)](podman-image-trust.1.md) | Manage container registry image trust policy. |
|
||||||
| unmount | [podman-image-unmount(1)](podman-image-unmount.1.md) | Unmount an image's root filesystem. |
|
| unmount | [podman-image-unmount(1)](podman-image-unmount.1.md) | Unmount an image's root filesystem. |
|
||||||
| untag | [podman-untag(1)](podman-untag.1.md) | Removes one or more names from a locally-stored image. |
|
| untag | [podman-untag(1)](podman-untag.1.md) | Remove one or more names from a locally-stored image. |
|
||||||
|
|
||||||
## SEE ALSO
|
## SEE ALSO
|
||||||
**[podman(1)](podman.1.md)**
|
**[podman(1)](podman.1.md)**
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
% podman-info 1
|
% podman-info 1
|
||||||
|
|
||||||
## NAME
|
## NAME
|
||||||
podman\-info - Displays Podman related system information
|
podman\-info - Display Podman related system information
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman info** [*options*]
|
**podman info** [*options*]
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
% podman-login 1
|
% podman-login 1
|
||||||
|
|
||||||
## NAME
|
## NAME
|
||||||
podman\-login - Login to a container registry
|
podman\-login - Log in to a container registry
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman login** [*options*] [*registry*]
|
**podman login** [*options*] [*registry*]
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
% podman-logout 1
|
% podman-logout 1
|
||||||
|
|
||||||
## NAME
|
## NAME
|
||||||
podman\-logout - Logout of a container registry
|
podman\-logout - Log out of a container registry
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman logout** [*options*] *registry*
|
**podman logout** [*options*] *registry*
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
% podman-machine-set 1
|
% podman-machine-set 1
|
||||||
|
|
||||||
## NAME
|
## NAME
|
||||||
podman\-machine\-set - Sets a virtual machine setting
|
podman\-machine\-set - Set a virtual machine setting
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman machine set** [*options*] [*name*]
|
**podman machine set** [*options*] [*name*]
|
||||||
|
@ -30,7 +30,7 @@ environment variable while the machines are running can lead to unexpected behav
|
|||||||
| list | [podman-machine-list(1)](podman-machine-list.1.md) | List virtual machines |
|
| list | [podman-machine-list(1)](podman-machine-list.1.md) | List virtual machines |
|
||||||
| os | [podman-machine-os(1)](podman-machine-os.1.md) | Manage a Podman virtual machine's OS |
|
| os | [podman-machine-os(1)](podman-machine-os.1.md) | Manage a Podman virtual machine's OS |
|
||||||
| rm | [podman-machine-rm(1)](podman-machine-rm.1.md) | Remove a virtual machine |
|
| rm | [podman-machine-rm(1)](podman-machine-rm.1.md) | Remove a virtual machine |
|
||||||
| set | [podman-machine-set(1)](podman-machine-set.1.md) | Sets a virtual machine setting |
|
| set | [podman-machine-set(1)](podman-machine-set.1.md) | Set a virtual machine setting |
|
||||||
| ssh | [podman-machine-ssh(1)](podman-machine-ssh.1.md) | SSH into 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 |
|
| 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 |
|
| stop | [podman-machine-stop(1)](podman-machine-stop.1.md) | Stop a virtual machine |
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
% podman-network-inspect 1
|
% podman-network-inspect 1
|
||||||
|
|
||||||
## NAME
|
## NAME
|
||||||
podman\-network\-inspect - Displays the network configuration for one or more networks
|
podman\-network\-inspect - Display the network configuration for one or more networks
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman network inspect** [*options*] *network* [*network* ...]
|
**podman network inspect** [*options*] *network* [*network* ...]
|
||||||
|
@ -28,7 +28,7 @@ so networks have to be created again after a backend change.
|
|||||||
| create | [podman-network-create(1)](podman-network-create.1.md) | Create a Podman network |
|
| create | [podman-network-create(1)](podman-network-create.1.md) | Create a Podman network |
|
||||||
| disconnect | [podman-network-disconnect(1)](podman-network-disconnect.1.md) | Disconnect a container from a network |
|
| disconnect | [podman-network-disconnect(1)](podman-network-disconnect.1.md) | Disconnect a container from a network |
|
||||||
| exists | [podman-network-exists(1)](podman-network-exists.1.md) | Check if the given network exists |
|
| exists | [podman-network-exists(1)](podman-network-exists.1.md) | Check if the given network exists |
|
||||||
| inspect | [podman-network-inspect(1)](podman-network-inspect.1.md) | Displays the network configuration for one or more networks |
|
| inspect | [podman-network-inspect(1)](podman-network-inspect.1.md) | Display the network configuration for one or more networks |
|
||||||
| ls | [podman-network-ls(1)](podman-network-ls.1.md) | Display a summary of networks |
|
| ls | [podman-network-ls(1)](podman-network-ls.1.md) | Display a summary of networks |
|
||||||
| prune | [podman-network-prune(1)](podman-network-prune.1.md) | Remove all unused networks |
|
| prune | [podman-network-prune(1)](podman-network-prune.1.md) | Remove all unused networks |
|
||||||
| reload | [podman-network-reload(1)](podman-network-reload.1.md) | Reload network configuration for containers |
|
| reload | [podman-network-reload(1)](podman-network-reload.1.md) | Reload network configuration for containers |
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
% podman-pod-clone 1
|
% podman-pod-clone 1
|
||||||
|
|
||||||
## NAME
|
## NAME
|
||||||
podman\-pod\-clone - Creates a copy of an existing pod
|
podman\-pod\-clone - Create a copy of an existing pod
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman pod clone** [*options*] *pod* *name*
|
**podman pod clone** [*options*] *pod* *name*
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
% podman-pod-inspect 1
|
% podman-pod-inspect 1
|
||||||
|
|
||||||
## NAME
|
## NAME
|
||||||
podman\-pod\-inspect - Displays information describing a pod
|
podman\-pod\-inspect - Display information describing a pod
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman pod inspect** [*options*] *pod* ...
|
**podman pod inspect** [*options*] *pod* ...
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
% podman-pod-logs 1
|
% podman-pod-logs 1
|
||||||
|
|
||||||
## NAME
|
## NAME
|
||||||
podman\-pod\-logs - Displays logs for pod with one or more containers
|
podman\-pod\-logs - Display logs for pod with one or more containers
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman pod logs** [*options*] *pod*
|
**podman pod logs** [*options*] *pod*
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
% podman-pod-ps 1
|
% podman-pod-ps 1
|
||||||
|
|
||||||
## NAME
|
## NAME
|
||||||
podman\-pod\-ps - Prints out information about pods
|
podman\-pod\-ps - Print out information about pods
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman pod ps** [*options*]
|
**podman pod ps** [*options*]
|
||||||
|
@ -13,15 +13,15 @@ podman pod is a set of subcommands that manage pods, or groups of containers.
|
|||||||
|
|
||||||
| Command | Man Page | Description |
|
| Command | Man Page | Description |
|
||||||
| ------- | ------------------------------------------------- | --------------------------------------------------------------------------------- |
|
| ------- | ------------------------------------------------- | --------------------------------------------------------------------------------- |
|
||||||
| clone | [podman-pod-clone(1)](podman-pod-clone.1.md) | Creates a copy of an existing pod. |
|
| clone | [podman-pod-clone(1)](podman-pod-clone.1.md) | Create a copy of an existing pod. |
|
||||||
| create | [podman-pod-create(1)](podman-pod-create.1.md) | Create a new pod. |
|
| create | [podman-pod-create(1)](podman-pod-create.1.md) | Create a new pod. |
|
||||||
| exists | [podman-pod-exists(1)](podman-pod-exists.1.md) | Check if a pod exists in local storage. |
|
| exists | [podman-pod-exists(1)](podman-pod-exists.1.md) | Check if a pod exists in local storage. |
|
||||||
| inspect | [podman-pod-inspect(1)](podman-pod-inspect.1.md) | Displays information describing a pod. |
|
| inspect | [podman-pod-inspect(1)](podman-pod-inspect.1.md) | Display information describing a pod. |
|
||||||
| kill | [podman-pod-kill(1)](podman-pod-kill.1.md) | Kill the main process of each container in one or more pods. |
|
| kill | [podman-pod-kill(1)](podman-pod-kill.1.md) | Kill the main process of each container in one or more pods. |
|
||||||
| logs | [podman-pod-logs(1)](podman-pod-logs.1.md) | Displays logs for pod with one or more containers. |
|
| logs | [podman-pod-logs(1)](podman-pod-logs.1.md) | Display logs for pod with one or more containers. |
|
||||||
| pause | [podman-pod-pause(1)](podman-pod-pause.1.md) | Pause one or more pods. |
|
| pause | [podman-pod-pause(1)](podman-pod-pause.1.md) | Pause one or more pods. |
|
||||||
| prune | [podman-pod-prune(1)](podman-pod-prune.1.md) | Remove all stopped pods and their containers. |
|
| prune | [podman-pod-prune(1)](podman-pod-prune.1.md) | Remove all stopped pods and their containers. |
|
||||||
| ps | [podman-pod-ps(1)](podman-pod-ps.1.md) | Prints out information about pods. |
|
| ps | [podman-pod-ps(1)](podman-pod-ps.1.md) | Print out information about pods. |
|
||||||
| restart | [podman-pod-restart(1)](podman-pod-restart.1.md) | Restart one or more pods. |
|
| restart | [podman-pod-restart(1)](podman-pod-restart.1.md) | Restart one or more pods. |
|
||||||
| rm | [podman-pod-rm(1)](podman-pod-rm.1.md) | Remove one or more stopped pods and containers. |
|
| rm | [podman-pod-rm(1)](podman-pod-rm.1.md) | Remove one or more stopped pods and containers. |
|
||||||
| start | [podman-pod-start(1)](podman-pod-start.1.md) | Start one or more pods. |
|
| start | [podman-pod-start(1)](podman-pod-start.1.md) | Start one or more pods. |
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
% podman-ps 1
|
% podman-ps 1
|
||||||
|
|
||||||
## NAME
|
## NAME
|
||||||
podman\-ps - Prints out information about containers
|
podman\-ps - Print out information about containers
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman ps** [*options*]
|
**podman ps** [*options*]
|
||||||
|
@ -157,7 +157,7 @@ the exit codes follow the `chroot` standard, see below:
|
|||||||
| [podman-image(1)](podman-image.1.md) | Manage images. |
|
| [podman-image(1)](podman-image.1.md) | Manage images. |
|
||||||
| [podman-images(1)](podman-images.1.md) | List images in local storage. |
|
| [podman-images(1)](podman-images.1.md) | List images in local storage. |
|
||||||
| [podman-import(1)](podman-import.1.md) | Import a tarball and save it as a filesystem image. |
|
| [podman-import(1)](podman-import.1.md) | Import a tarball and save it as a filesystem image. |
|
||||||
| [podman-info(1)](podman-info.1.md) | Displays Podman related system information. |
|
| [podman-info(1)](podman-info.1.md) | Display Podman related system information. |
|
||||||
| [podman-init(1)](podman-init.1.md) | Initialize a container |
|
| [podman-init(1)](podman-init.1.md) | Initialize a container |
|
||||||
| [podman-inspect(1)](podman-inspect.1.md) | Display a container or image's configuration. |
|
| [podman-inspect(1)](podman-inspect.1.md) | Display a container or image's configuration. |
|
||||||
| [podman-kill(1)](podman-kill.1.md) | Kill the main process in one or more containers. |
|
| [podman-kill(1)](podman-kill.1.md) | Kill the main process in one or more containers. |
|
||||||
@ -166,12 +166,12 @@ the exit codes follow the `chroot` standard, see below:
|
|||||||
| [podman-pause(1)](podman-pause.1.md) | Pause one or more containers. |
|
| [podman-pause(1)](podman-pause.1.md) | Pause one or more containers. |
|
||||||
| [podman-pod(1)](podman-pod.1.md) | Management tool for groups of containers, called pods. |
|
| [podman-pod(1)](podman-pod.1.md) | Management tool for groups of containers, called pods. |
|
||||||
| [podman-port(1)](podman-port.1.md) | List port mappings for a container. |
|
| [podman-port(1)](podman-port.1.md) | List port mappings for a container. |
|
||||||
| [podman-ps(1)](podman-ps.1.md) | Prints out information about containers. |
|
| [podman-ps(1)](podman-ps.1.md) | Print out information about containers. |
|
||||||
| [podman-pull(1)](podman-pull.1.md) | Pull an image from a registry. |
|
| [podman-pull(1)](podman-pull.1.md) | Pull an image from a registry. |
|
||||||
| [podman-push(1)](podman-push.1.md) | Push an image from local storage to elsewhere. |
|
| [podman-push(1)](podman-push.1.md) | Push an image from local storage to elsewhere. |
|
||||||
| [podman-restart(1)](podman-restart.1.md) | Restart one or more containers. |
|
| [podman-restart(1)](podman-restart.1.md) | Restart one or more containers. |
|
||||||
| [podman-rm(1)](podman-rm.1.md) | Remove one or more containers. |
|
| [podman-rm(1)](podman-rm.1.md) | Remove one or more containers. |
|
||||||
| [podman-rmi(1)](podman-rmi.1.md) | Removes one or more locally stored images. |
|
| [podman-rmi(1)](podman-rmi.1.md) | Remove one or more locally stored images. |
|
||||||
| [podman-run(1)](podman-run.1.md) | Run a command in a new container. |
|
| [podman-run(1)](podman-run.1.md) | Run a command in a new container. |
|
||||||
| [podman-save(1)](podman-save.1.md) | Save an image to a container archive. |
|
| [podman-save(1)](podman-save.1.md) | Save an image to a container archive. |
|
||||||
| [podman-start(1)](podman-start.1.md) | Start one or more containers. |
|
| [podman-start(1)](podman-start.1.md) | Start one or more containers. |
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
% podman-rmi 1
|
% podman-rmi 1
|
||||||
|
|
||||||
## NAME
|
## NAME
|
||||||
podman\-rmi - Removes one or more locally stored images
|
podman\-rmi - Remove one or more locally stored images
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman rmi** [*options*] *image* [...]
|
**podman rmi** [*options*] *image* [...]
|
||||||
|
@ -16,7 +16,7 @@ The system command allows management of the podman systems
|
|||||||
| connection | [podman-system-connection(1)](podman-system-connection.1.md) | Manage the destination(s) for Podman service(s) |
|
| connection | [podman-system-connection(1)](podman-system-connection.1.md) | Manage the destination(s) for Podman service(s) |
|
||||||
| df | [podman-system-df(1)](podman-system-df.1.md) | Show podman disk usage. |
|
| df | [podman-system-df(1)](podman-system-df.1.md) | Show podman disk usage. |
|
||||||
| events | [podman-events(1)](podman-events.1.md) | Monitor Podman events |
|
| events | [podman-events(1)](podman-events.1.md) | Monitor Podman events |
|
||||||
| info | [podman-info(1)](podman-info.1.md) | Displays Podman related system information. |
|
| info | [podman-info(1)](podman-info.1.md) | Display Podman related system information. |
|
||||||
| migrate | [podman-system-migrate(1)](podman-system-migrate.1.md) | Migrate existing containers to a new podman version. |
|
| migrate | [podman-system-migrate(1)](podman-system-migrate.1.md) | Migrate existing containers to a new podman version. |
|
||||||
| prune | [podman-system-prune(1)](podman-system-prune.1.md) | Remove all unused pods, containers, images, networks, and volume data. |
|
| prune | [podman-system-prune(1)](podman-system-prune.1.md) | Remove all unused pods, containers, images, networks, and volume data. |
|
||||||
| renumber | [podman-system-renumber(1)](podman-system-renumber.1.md) | Migrate lock numbers to handle a change in maximum number of locks. |
|
| renumber | [podman-system-renumber(1)](podman-system-renumber.1.md) | Migrate lock numbers to handle a change in maximum number of locks. |
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
% podman-untag 1
|
% podman-untag 1
|
||||||
|
|
||||||
## NAME
|
## NAME
|
||||||
podman\-untag - Removes one or more names from a locally-stored image
|
podman\-untag - Remove one or more names from a locally-stored image
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman untag** *image* [*name*[:*tag*]...]
|
**podman untag** *image* [*name*[:*tag*]...]
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
% podman-update 1
|
% podman-update 1
|
||||||
|
|
||||||
## NAME
|
## NAME
|
||||||
podman\-update - Updates the cgroup configuration of a given container
|
podman\-update - Update the cgroup configuration of a given container
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman update** [*options*] *container*
|
**podman update** [*options*] *container*
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
% podman-volume-export 1
|
% podman-volume-export 1
|
||||||
|
|
||||||
## NAME
|
## NAME
|
||||||
podman\-volume\-export - Exports volume to external tar
|
podman\-volume\-export - Export volume to external tar
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman volume export** [*options*] *volume*
|
**podman volume export** [*options*] *volume*
|
||||||
|
@ -15,7 +15,7 @@ podman volume is a set of subcommands that manage volumes.
|
|||||||
| ------- | ------------------------------------------------------ | ------------------------------------------------------------------------------ |
|
| ------- | ------------------------------------------------------ | ------------------------------------------------------------------------------ |
|
||||||
| create | [podman-volume-create(1)](podman-volume-create.1.md) | Create a new volume. |
|
| create | [podman-volume-create(1)](podman-volume-create.1.md) | Create a new volume. |
|
||||||
| exists | [podman-volume-exists(1)](podman-volume-exists.1.md) | Check if the given volume exists. |
|
| exists | [podman-volume-exists(1)](podman-volume-exists.1.md) | Check if the given volume exists. |
|
||||||
| export | [podman-volume-export(1)](podman-volume-export.1.md) | Exports volume to external tar. |
|
| export | [podman-volume-export(1)](podman-volume-export.1.md) | Export volume to external tar. |
|
||||||
| import | [podman-volume-import(1)](podman-volume-import.1.md) | Import tarball contents into an existing podman volume. |
|
| import | [podman-volume-import(1)](podman-volume-import.1.md) | Import tarball contents into an existing podman volume. |
|
||||||
| inspect | [podman-volume-inspect(1)](podman-volume-inspect.1.md) | Get detailed information on one or more volumes. |
|
| inspect | [podman-volume-inspect(1)](podman-volume-inspect.1.md) | Get detailed information on one or more volumes. |
|
||||||
| ls | [podman-volume-ls(1)](podman-volume-ls.1.md) | List all the available volumes. |
|
| ls | [podman-volume-ls(1)](podman-volume-ls.1.md) | List all the available volumes. |
|
||||||
|
@ -323,13 +323,13 @@ the exit codes follow the `chroot` standard, see below:
|
|||||||
| [podman-image(1)](podman-image.1.md) | Manage images. |
|
| [podman-image(1)](podman-image.1.md) | Manage images. |
|
||||||
| [podman-images(1)](podman-images.1.md) | List images in local storage. |
|
| [podman-images(1)](podman-images.1.md) | List images in local storage. |
|
||||||
| [podman-import(1)](podman-import.1.md) | Import a tarball and save it as a filesystem image. |
|
| [podman-import(1)](podman-import.1.md) | Import a tarball and save it as a filesystem image. |
|
||||||
| [podman-info(1)](podman-info.1.md) | Displays Podman related system information. |
|
| [podman-info(1)](podman-info.1.md) | Display Podman related system information. |
|
||||||
| [podman-init(1)](podman-init.1.md) | Initialize one or more containers |
|
| [podman-init(1)](podman-init.1.md) | Initialize one or more containers |
|
||||||
| [podman-inspect(1)](podman-inspect.1.md) | Display a container, image, volume, network, or pod's configuration. |
|
| [podman-inspect(1)](podman-inspect.1.md) | Display a container, image, volume, network, or pod's configuration. |
|
||||||
| [podman-kill(1)](podman-kill.1.md) | Kill the main process in one or more containers. |
|
| [podman-kill(1)](podman-kill.1.md) | Kill the main process in one or more containers. |
|
||||||
| [podman-load(1)](podman-load.1.md) | Load image(s) from a tar archive into container storage. |
|
| [podman-load(1)](podman-load.1.md) | Load image(s) from a tar archive into container storage. |
|
||||||
| [podman-login(1)](podman-login.1.md) | Login to a container registry. |
|
| [podman-login(1)](podman-login.1.md) | Log in to a container registry. |
|
||||||
| [podman-logout(1)](podman-logout.1.md) | Logout of a container registry. |
|
| [podman-logout(1)](podman-logout.1.md) | Log out of a container registry. |
|
||||||
| [podman-logs(1)](podman-logs.1.md) | Display the logs of one or more containers. |
|
| [podman-logs(1)](podman-logs.1.md) | Display the logs of one or more containers. |
|
||||||
| [podman-machine(1)](podman-machine.1.md) | Manage Podman's virtual machine |
|
| [podman-machine(1)](podman-machine.1.md) | Manage Podman's virtual machine |
|
||||||
| [podman-manifest(1)](podman-manifest.1.md) | Create and manipulate manifest lists and image indexes. |
|
| [podman-manifest(1)](podman-manifest.1.md) | Create and manipulate manifest lists and image indexes. |
|
||||||
@ -339,13 +339,13 @@ the exit codes follow the `chroot` standard, see below:
|
|||||||
| [podman-kube(1)](podman-kube.1.md) | Play containers, pods or volumes based on a structured input file. |
|
| [podman-kube(1)](podman-kube.1.md) | Play containers, pods or volumes based on a structured input file. |
|
||||||
| [podman-pod(1)](podman-pod.1.md) | Management tool for groups of containers, called pods. |
|
| [podman-pod(1)](podman-pod.1.md) | Management tool for groups of containers, called pods. |
|
||||||
| [podman-port(1)](podman-port.1.md) | List port mappings for a container. |
|
| [podman-port(1)](podman-port.1.md) | List port mappings for a container. |
|
||||||
| [podman-ps(1)](podman-ps.1.md) | Prints out information about containers. |
|
| [podman-ps(1)](podman-ps.1.md) | Print out information about containers. |
|
||||||
| [podman-pull(1)](podman-pull.1.md) | Pull an image from a registry. |
|
| [podman-pull(1)](podman-pull.1.md) | Pull an image from a registry. |
|
||||||
| [podman-push(1)](podman-push.1.md) | Push an image, manifest list or image index from local storage to elsewhere.|
|
| [podman-push(1)](podman-push.1.md) | Push an image, manifest list or image index from local storage to elsewhere.|
|
||||||
| [podman-rename(1)](podman-rename.1.md) | Rename an existing container. |
|
| [podman-rename(1)](podman-rename.1.md) | Rename an existing container. |
|
||||||
| [podman-restart(1)](podman-restart.1.md) | Restart one or more containers. |
|
| [podman-restart(1)](podman-restart.1.md) | Restart one or more containers. |
|
||||||
| [podman-rm(1)](podman-rm.1.md) | Remove one or more containers. |
|
| [podman-rm(1)](podman-rm.1.md) | Remove one or more containers. |
|
||||||
| [podman-rmi(1)](podman-rmi.1.md) | Removes one or more locally stored images. |
|
| [podman-rmi(1)](podman-rmi.1.md) | Remove one or more locally stored images. |
|
||||||
| [podman-run(1)](podman-run.1.md) | Run a command in a new container. |
|
| [podman-run(1)](podman-run.1.md) | Run a command in a new container. |
|
||||||
| [podman-save(1)](podman-save.1.md) | Save image(s) to an archive. |
|
| [podman-save(1)](podman-save.1.md) | Save image(s) to an archive. |
|
||||||
| [podman-search(1)](podman-search.1.md) | Search a registry for an image. |
|
| [podman-search(1)](podman-search.1.md) | Search a registry for an image. |
|
||||||
@ -359,8 +359,8 @@ the exit codes follow the `chroot` standard, see below:
|
|||||||
| [podman-unmount(1)](podman-unmount.1.md) | Unmount a working container's root filesystem. |
|
| [podman-unmount(1)](podman-unmount.1.md) | Unmount a working container's root filesystem. |
|
||||||
| [podman-unpause(1)](podman-unpause.1.md) | Unpause one or more containers. |
|
| [podman-unpause(1)](podman-unpause.1.md) | Unpause one or more containers. |
|
||||||
| [podman-unshare(1)](podman-unshare.1.md) | Run a command inside of a modified user namespace. |
|
| [podman-unshare(1)](podman-unshare.1.md) | Run a command inside of a modified user namespace. |
|
||||||
| [podman-untag(1)](podman-untag.1.md) | Removes one or more names from a locally-stored image. |
|
| [podman-untag(1)](podman-untag.1.md) | Remove one or more names from a locally-stored image. |
|
||||||
| [podman-update(1)](podman-update.1.md) | Updates the cgroup configuration of a given container. |
|
| [podman-update(1)](podman-update.1.md) | Update the cgroup configuration of a given container. |
|
||||||
| [podman-version(1)](podman-version.1.md) | Display the Podman version information. |
|
| [podman-version(1)](podman-version.1.md) | Display the Podman version information. |
|
||||||
| [podman-volume(1)](podman-volume.1.md) | Simple management tool for volumes. |
|
| [podman-volume(1)](podman-volume.1.md) | Simple management tool for volumes. |
|
||||||
| [podman-wait(1)](podman-wait.1.md) | Wait on one or more containers to stop and print their exit codes. |
|
| [podman-wait(1)](podman-wait.1.md) | Wait on one or more containers to stop and print their exit codes. |
|
||||||
|
Reference in New Issue
Block a user