Merge pull request #3915 from rwha/fix_man_page_tests

Fix formatting and enable hack/man-page-checker
This commit is contained in:
OpenShift Merge Robot 2019-09-03 05:34:06 -07:00 committed by GitHub
commit 7e238b9e0c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
65 changed files with 146 additions and 70 deletions

View file

@ -1 +1 @@
.so man1/podman-rm.1
.so man1/podman-rmi.1

View file

@ -6,6 +6,8 @@ podman\-attach - Attach to a running container
## SYNOPSIS
**podman attach** [*options*] *container*
**podman container attach** [*options*] *container*
## DESCRIPTION
The attach command allows you to attach to a running container using the container's ID
or name, either to view its ongoing output or to control it interactively.

View file

@ -6,6 +6,8 @@ podman\-build - Build a container image using a Dockerfile
## SYNOPSIS
**podman build** [*options*] *context*
**podman image build** [*options*] *context*
## DESCRIPTION
**podman build** Builds an image using instructions from one or more Dockerfiles and a specified build context directory.

View file

@ -6,6 +6,8 @@ podman\-commit - Create new image based on the changed container
## SYNOPSIS
**podman commit** [*options*] *container* *image*
**podman container commit** [*options*] *container* *image*
## DESCRIPTION
**podman commit** creates an image based on a changed container. The author of the
image can be set using the `--author` flag. Various image instructions can be

View file

@ -1,7 +1,7 @@
% podman-container-cleanup(1)
## NAME
podman\-container\-cleanup - Cleanup Container storage and networks
podman\-container\-cleanup - Cleanup the container's network and mountpoints
## SYNOPSIS
**podman container cleanup** [*options*] *container*

View file

@ -1,7 +1,7 @@
% podman-container-prune(1)
## NAME
podman-container-prune - Remove all stopped containers
podman-container-prune - Remove all stopped containers from local storage
## SYNOPSIS
**podman container prune** [*options*]

View file

@ -1,7 +1,7 @@
% podman-container-restore(1)
## NAME
podman\-container\-restore - Restores one or more running containers
podman\-container\-restore - Restores one or more containers from a checkpoint
## SYNOPSIS
**podman container restore** [*options*] *container* ...

View file

@ -1,10 +1,10 @@
% podman-container-runlabel(1)
## NAME
podman-container-runlabel - Execute Image Label Method
podman-container-runlabel - Executes a command as described by a container image label
## SYNOPSIS
**podman container runlabel** [*options*] *LABEL* *IMAGE* [ARG...]
**podman container runlabel** [*options*] *label* *image* [*arg...*]
## DESCRIPTION
**podman container runlabel** reads the provided `LABEL` field in the container

View file

@ -14,8 +14,8 @@ The container command allows you to manage containers
| Command | Man Page | Description |
| --------- | --------------------------------------------------- | ---------------------------------------------------------------------------- |
| 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 containers. |
| cleanup | [podman-container-cleanup(1)](podman-container-cleanup.1.md) | Cleanup containers network and mountpoints. |
| checkpoint | [podman-container-checkpoint(1)](podman-container-checkpoint.1.md) | Checkpoints one or more running containers. |
| cleanup | [podman-container-cleanup(1)](podman-container-cleanup.1.md) | Cleanup the container's network and mountpoints. |
| 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. |
| create | [podman-create(1)](podman-create.1.md) | Create a new container. |

View file

@ -6,6 +6,8 @@ podman\-cp - Copy files/folders between a container and the local filesystem
## SYNOPSIS
**podman cp** [*options*] [*container*:]*src_path* [*container*:]*dest_path*
**podman container cp** [*options*] [*container*:]*src_path* [*container*:]*dest_path*
## DESCRIPTION
Copies the contents of **src_path** to the **dest_path**. You can copy from the container's filesystem to the local machine or the reverse, from the local filesystem to the container.
If - is specified for either the SRC_PATH or DEST_PATH, you can also stream a tar archive from STDIN or to STDOUT.

View file

@ -6,6 +6,8 @@ podman\-create - Create a new container
## SYNOPSIS
**podman create** [*options*] *image* [*command* [*arg* ...]]
**podman container create** [*options*] *image* [*command* [*arg* ...]]
## DESCRIPTION
Creates a writable container layer over the specified image and prepares it for

View file

@ -6,6 +6,8 @@ podman\-diff - Inspect changes on a container or image's filesystem
## SYNOPSIS
**podman diff** [*options*] *name*
**podman container diff** [*options*] *name*
## DESCRIPTION
Displays changes on a container or image's filesystem. The container or image will be compared to its parent layer

View file

@ -6,6 +6,8 @@ podman\-exec - Execute a command in a running container
## SYNOPSIS
**podman exec** [*options*] *container* [*command* [*arg* ...]]
**podman container exec** [*options*] *container* [*command* [*arg* ...]]
## DESCRIPTION
**podman exec** executes a command in a running container.

View file

@ -6,6 +6,8 @@ podman\-export - Export a container's filesystem contents as a tar archive
## SYNOPSIS
**podman export** [*options*] *container*
**podman container export** [*options*] *container*
## DESCRIPTION
**podman export** exports the filesystem of a container and saves it as a tarball
on the local machine. **podman export** writes to STDOUT by default and can be

View file

@ -1,6 +1,6 @@
% podman-generate-kube(1)
## NAME
podman-generate-kube - Generate Kubernetes YAML
podman-generate-kube - Generate Kubernetes YAML based on a pod or container
## SYNOPSIS
**podman generate kube** [*options*] *container* | *pod*

View file

@ -1,7 +1,7 @@
% podman-generate-systemd(1)
## NAME
podman-generate-systemd- Generate Systemd Unit file
podman\-generate\-systemd - Generate systemd unit file(s) for a container. Not supported for the remote client
## SYNOPSIS
**podman generate systemd** [*options*] *container|pod*

View file

@ -6,6 +6,8 @@ podman\-history - Show the history of an image
## SYNOPSIS
**podman history** [*options*] *image*[:*tag*|@*digest*]
**podman image history** [*options*] *image*[:*tag*|@*digest*]
## DESCRIPTION
**podman history** displays the history of an image by printing out information
about each layer used in the image. The information printed out for each layer

View file

@ -1,7 +1,7 @@
% podman-image-prune(1)
## NAME
podman-image-prune - Remove all unused images
podman-image-prune - Remove all unused images from the local store
## SYNOPSIS
**podman image prune** [*options*]

View file

@ -5,7 +5,7 @@ podman\-image\-trust - Manage container registry image trust policy
## SYNOPSIS
**podman image trust** set|show [*options*] *REGISTRY[/REPOSITORY]*
**podman image trust** set|show [*options*] *registry[/repository]*
## DESCRIPTION
Manages which registries you trust as a source of container images based on its location. The location is determined

View file

@ -25,10 +25,10 @@ The image command allows you to manage images
| 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. |
| save | [podman-save(1)](podman-save.1.md) | Save an image to docker-archive or oci. |
| sign | [podman-image-sign(1)](podman-image-sign.1.md) | Sign 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. |
| tree | [podman-image-tree(1)](podman-image-tree.1.md) | Prints layer hierarchy of an image in a tree format. |
| trust | [podman-image-trust(1)](podman-image-trust.1.md)| Manage container image trust policy. |
| trust | [podman-image-trust(1)](podman-image-trust.1.md)| Manage container registry image trust policy. |
## SEE ALSO
podman

View file

@ -6,6 +6,10 @@ podman\-images - List images in local storage
## SYNOPSIS
**podman images** [*options*]
**podman image list** [*options*]
**podman image ls** [*options*]
## DESCRIPTION
Displays locally stored images, their names, and their IDs.

View file

@ -6,6 +6,8 @@ podman\-import - Import a tarball and save it as a filesystem image
## SYNOPSIS
**podman import** [*options*] *path* [*reference*]
**podman image import** [*options*] *path* [*reference*]
## DESCRIPTION
**podman import** imports a tarball (.tar, .tar.gz, .tgz, .bzip, .tar.xz, .txz)
and saves it as a filesystem image. Remote tarballs can be specified using a URL.

View file

@ -1,12 +1,12 @@
% podman-info(1)
## NAME
podman\-system\-info - Display system information
podman\-info - Display system information
podman\-info - Displays Podman related system information
## SYNOPSIS
**podman info** [*options*]
**podman system info** [*options*]
## DESCRIPTION

View file

@ -6,6 +6,8 @@ podman\-init - Initialize one or more containers
## SYNOPSIS
**podman init** [*options*] *container* [*container*...]
**podman container init** [*options*] *container* [*container*...]
## DESCRIPTION
Initialize one or more containers.
You may use container IDs or names as input.

View file

@ -1,11 +1,13 @@
% podman-kill(1)
## NAME
podman\-kill - Kills one or more containers with a signal
podman\-kill - Kill the main process in one or more containers
## SYNOPSIS
**podman kill** [*options*] [*container* ...]
**podman container kill** [*options*] [*container* ...]
## DESCRIPTION
The main process inside each container specified will be sent SIGKILL, or any signal specified with option --signal.

View file

@ -6,6 +6,8 @@ podman\-load - Load an image from a container image archive into container stora
## SYNOPSIS
**podman load** [*options*] [*name*[:*tag*]]
**podman image load** [*options*] [*name*[:*tag*]]
## DESCRIPTION
**podman load** loads an image from either an **oci-archive** or **docker-archive** stored on the local machine into container storage. **podman load** reads from stdin by default or a file if the **input** option is set.
You can also specify a name for the image if the archive does not contain a named reference, of if you want an additional name for the local image.

View file

@ -1,13 +1,13 @@
% podman-logs(1)
## NAME
podman\-container\-logs (podman\-logs) - Fetch the logs of one or more containers
podman\-logs - Display the logs of one or more containers
## SYNOPSIS
**podman container logs** [*options*] *container* [*container...*]
**podman logs** [*options*] *container* [*container...*]
**podman container logs** [*options*] *container* [*container...*]
## DESCRIPTION
The podman logs command batch-retrieves whatever logs are present for one or more containers at the time of execution.
This does not guarantee execution order when combined with podman run (i.e. your run may not have generated

View file

@ -1,11 +1,13 @@
% podman-mount(1)
## NAME
podman\-mount - Mount the specified working containers' root filesystem
podman\-mount - Mount a working container's root filesystem
## SYNOPSIS
**podman mount** [*container* ...]
**podman container mount** [*container* ...]
## DESCRIPTION
Mounts the specified containers' root file system in a location which can be
accessed from the host, and returns its location.

View file

@ -1,7 +1,7 @@
% podman-network-inspect(1)
## NAME
podman\-network-inspect- Inspect one or more Podman networks
podman\-network\-inspect - Displays the raw CNI network configuration for one or more networks
## SYNOPSIS
**podman network inspect** [*network* ...]

View file

@ -1,7 +1,7 @@
% podman-network-ls(1)
## NAME
podman\-network-ls- Display a summary of CNI networks
podman\-network\-ls - Display a summary of CNI networks
## SYNOPSIS
**podman network ls** [*options*]

View file

@ -1,7 +1,7 @@
% podman-network-rm(1)
## NAME
podman\-network-rm- Delete a Podman CNI network
podman\-network\-rm - Remove one or more CNI networks
## SYNOPSIS
**podman network rm** [*network...*]

View file

@ -1,7 +1,7 @@
% podman-network(1)
## NAME
podman\-network- Manage podman CNI networks
podman\-network - Manage Podman CNI networks
## SYNOPSIS
**podman network** *subcommand*

View file

@ -6,6 +6,8 @@ podman\-pause - Pause one or more containers
## SYNOPSIS
**podman pause** [*options*] [*container*...]
**podman container pause** [*options*] [*container*...]
## DESCRIPTION
Pauses all the processes in one or more containers. You may use container IDs or names as input.

View file

@ -4,7 +4,7 @@
podman-play-kube - Create pods and containers based on Kubernetes YAML
## SYNOPSIS
**podman play kube** [*options*] *file***.yml**
**podman play kube** [*options*] *file*__.yml__
## DESCRIPTION
**podman play kube** will read in a structured file of Kubernetes YAML. It will then recreate

View file

@ -14,7 +14,7 @@ file input. Containers will be automatically started.
| Command | Man Page | Description |
| ------- | --------------------------------------------------- | ---------------------------------------------------------------------------- |
| kube | [podman-play-kube(1)](podman-play-kube.1.md) | Recreate pods and containers based on Kubernetes YAML. |
| kube | [podman-play-kube(1)](podman-play-kube.1.md) | Create pods and containers based on Kubernetes YAML. |
## SEE ALSO
podman, podman-pod(1), podman-container(1), podman-generate(1), podman-play(1), podman-play-kube(1)

View file

@ -1,7 +1,7 @@
% podman-pod-kill(1)
## NAME
podman\-pod\-kill - Kills all containers in one or more pods with a signal
podman\-pod\-kill - Kill the main process of each container in one or more pods
## SYNOPSIS
**podman pod kill** [*options*] *pod* ...

View file

@ -1,7 +1,7 @@
% podman-pod-stats(1)
## NAME
podman\-pod\-stats - Display a live stream of resource usage statistics for the containers in one or more pods
podman\-pod\-stats - Display a live stream of resource usage stats for containers in one or more pods
## SYNOPSIS
**podman pod stats** [*options*] [*pod*]

View file

@ -1,7 +1,7 @@
% podman-pod(1)
## NAME
podman\-pod - Simple management tool for groups of containers, called pods.
podman\-pod - Management tool for groups of containers, called pods
## SYNOPSIS
**podman pod** *subcommand*
@ -11,22 +11,22 @@ podman pod is a set of subcommands that manage pods, or groups of containers.
## SUBCOMMANDS
| Command | Man Page | Description |
| ------- | -------------------------------------------------------- | ------------------------------------------------------------------------------ |
| 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. |
| inspect | [podman-pod-inspect(1)](podman-pod-inspect.1.md) | Displays information describing a pod. |
| kill | [podman-pod-kill(1)](podman-pod-kill.1.md) | Kill the main process of each container in pod. |
| pause | [podman-pod-pause(1)](podman-pod-pause.1.md) | Pause one or more pods. |
| prune | [podman-container-prune(1)](podman-container-prune.1.md) | Remove all stopped containers from local storage. |
| ps | [podman-pod-ps(1)](podman-pod-ps.1.md) | Prints out information about 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 pods. |
| start | [podman-pod-start(1)](podman-pod-start.1.md) | Start one or more pods. |
| stats | [podman-pod-stats(1)](podman-pod-stats.1.md) | Display live stream resource usage stats for containers in one or more pods. |
| stop | [podman-pod-stop(1)](podman-pod-stop.1.md) | Stop one or more pods. |
| top | [podman-pod-top(1)](podman-pod-top.1.md) | Display the running processes of containers in a pod. |
| unpause | [podman-pod-unpause(1)](podman-pod-unpause.1.md) | Unpause one or more pods. |
| Command | Man Page | Description |
| ------- | ------------------------------------------------- | --------------------------------------------------------------------------------- |
| 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. |
| inspect | [podman-pod-inspect(1)](podman-pod-inspect.1.md) | Displays 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. |
| 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. |
| ps | [podman-pod-ps(1)](podman-pod-ps.1.md) | Prints out information about 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 pods. |
| start | [podman-pod-start(1)](podman-pod-start.1.md) | Start one or more pods. |
| stats | [podman-pod-stats(1)](podman-pod-stats.1.md) | Display a live stream of resource usage stats for containers in one or more pods. |
| stop | [podman-pod-stop(1)](podman-pod-stop.1.md) | Stop one or more pods. |
| top | [podman-pod-top(1)](podman-pod-top.1.md) | Display the running processes of containers in a pod. |
| unpause | [podman-pod-unpause(1)](podman-pod-unpause.1.md) | Unpause one or more pods. |
## SEE ALSO
podman(1)

View file

@ -6,6 +6,8 @@ podman\-port - List port mappings for a container
## SYNOPSIS
**podman port** [*options*] *container* [*private-port*[/*proto*]]
**podman container port** [*options*] *container* [*private-port*[/*proto*]]
## DESCRIPTION
List port mappings for the *container* or lookup the public-facing port that is NAT-ed to the *private-port*.

View file

@ -6,6 +6,16 @@ podman\-ps - Prints out information about containers
## SYNOPSIS
**podman ps** [*options*]
**podman container list** [*options*]
**podman container ls** [*options*]
**podman container ps** [*options*]
**podman list** [*options*]
**podman ls** [*options*]
## DESCRIPTION
**podman ps** lists the running containers on the system. Use the **--all** flag to view
all the containers information. By default it lists:

View file

@ -6,6 +6,8 @@ podman\-pull - Pull an image from a registry
## SYNOPSIS
**podman pull** [*options*] *name*[:*tag*|@*digest*]
**podman image pull** [*options*] *name*[:*tag*|@*digest*]
## DESCRIPTION
Copies an image from a registry onto the local machine. **podman pull** pulls an
image from Docker Hub if a registry is not specified in the command line argument.

View file

@ -6,6 +6,8 @@ podman\-push - Push an image from local storage to elsewhere
## SYNOPSIS
**podman push** [*options*] *image* [*destination*]
**podman image push** [*options*] *image* [*destination*]
## DESCRIPTION
Pushes an image from local storage to a specified destination.
Push is mainly used to push images to registries, however **podman push**

View file

@ -6,6 +6,8 @@ podman\-restart - Restart one or more containers
## SYNOPSIS
**podman restart** [*options*] *container* ...
**podman container restart** [*options*] *container* ...
## DESCRIPTION
The restart command allows containers to be restarted using their ID or name.
Containers will be stopped if they are running and then restarted. Stopped

View file

@ -1,13 +1,13 @@
% podman-rm(1)
## NAME
podman\-container\-rm (podman\-rm) - Remove one or more containers
podman\-rm - Remove one or more containers
## SYNOPSIS
**podman container rm** [*options*] *container*
**podman rm** [*options*] *container*
**podman container rm** [*options*] *container*
## DESCRIPTION
**podman rm** will remove one or more containers from the host. The container name or ID can be used. This does not remove images. Running containers will not be removed without the `-f` option

View file

@ -1,13 +1,13 @@
% podman-rmi(1)
## NAME
podman\-image\-rm (podman\-rmi) - Removes one or more images
podman\-rmi - Removes one or more locally stored images
## SYNOPSIS
**podman image rm** *image* [...]
**podman rmi** *image* [...]
**podman image rm** *image* [...]
## DESCRIPTION
Removes one or more locally stored images.

View file

@ -6,6 +6,8 @@ podman\-run - Run a command in a new container
## SYNOPSIS
**podman run** [*options*] *image* [*command* [*arg* ...]]
**podman container run** [*options*] *image* [*command* [*arg* ...]]
## DESCRIPTION
Run a process in a new container. **podman run** starts a process with its own

View file

@ -6,6 +6,8 @@ podman\-save - Save an image to a container archive
## SYNOPSIS
**podman save** [*options*] *name*[:*tag*]
**podman image save** [*options*] *name*[:*tag*]
## DESCRIPTION
**podman save** saves an image to either **docker-archive**, **oci-archive**, **oci-dir** (directory with oci manifest type), or **docker-dir** (directory with v2s2 manifest type) on the local machine,
default is **docker-archive**. **podman save** writes to STDOUT by default and can be redirected to a

View file

@ -6,6 +6,8 @@ podman\-start - Start one or more containers
## SYNOPSIS
**podman start** [*options*] *container* ...
**podman container start** [*options*] *container* ...
## DESCRIPTION
Start one or more containers. You may use container IDs or names as input. The *attach* and *interactive*
options cannot be used to override the *--tty* and *--interactive* options from when the container

View file

@ -1,11 +1,13 @@
% podman-stats(1)
## NAME
podman\-stats - Display a live stream of 1 or more containers' resource usage statistics
podman\-stats - Display a live stream of one or more container's resource usage statistics
## SYNOPSIS
**podman stats** [*options*] [*container*]
**podman container stats** [*options*] [*container*]
## DESCRIPTION
Display a live stream of one or more containers' resource usage statistics

View file

@ -1,11 +1,13 @@
% podman-stop(1)
## NAME
podman\-stop - Stop one or more containers
podman\-stop - Stop one or more running containers
## SYNOPSIS
**podman stop** [*options*] *container* ...
**podman container stop** [*options*] *container* ...
## DESCRIPTION
Stops one or more containers. You may use container IDs or names as input. The **--timeout** switch
allows you to specify the number of seconds to wait before forcibly stopping the container after the stop command

View file

@ -1,7 +1,7 @@
% podman-system-migrate(1)
## NAME
podman\-system\-migrate - Migrate container to the latest version of podman
podman\-system\-migrate - Migrate existing containers to a new podman version
## SYNOPSIS
** podman system migrate**

View file

@ -1,7 +1,7 @@
% podman-system-renumber(1)
## NAME
podman\-system\-renumber - Renumber container locks
podman\-system\-renumber - Migrate lock numbers to handle a change in maximum number of locks
## SYNOPSIS
**podman system renumber**

View file

@ -15,7 +15,7 @@ The system command allows you to manage the podman systems
| ------- | --------------------------------------------------- | ---------------------------------------------------------------------------- |
| df | [podman-system-df(1)](podman-system-df.1.md) | Show podman disk usage. |
| info | [podman-system-info(1)](podman-info.1.md) | Displays Podman related system information. |
| prune | [podman-system-prune(1)](podman-system-prune.1.md) | Remove all unused data |
| prune | [podman-system-prune(1)](podman-system-prune.1.md) | Remove all unused container, image 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. |
| migrate | [podman-system-migrate(1)](podman-system-migrate.1.md)| Migrate existing containers to a new podman version. |

View file

@ -6,6 +6,7 @@ podman\-tag - Add an additional name to a local image
## SYNOPSIS
**podman tag** *image*[:*tag*] *target-name*[:*tag*] [*options*]
**podman image tag** *image*[:*tag*] *target-name*[:*tag*] [*options*]
## DESCRIPTION
Assigns a new alias to an image. An alias refers to the entire image name, including the optional

View file

@ -6,6 +6,8 @@ podman\-top - Display the running processes of a container
## SYNOPSIS
**podman top** [*options*] *container* [*format-descriptors*]
**podman container top** [*options*] *container* [*format-descriptors*]
## DESCRIPTION
Display the running processes of the container. The *format-descriptors* are ps (1) compatible AIX format descriptors but extended to print additional information, such as the seccomp mode or the effective capabilities of a given process. The descriptors can either be passed as separated arguments or as a single comma-separated argument. Note that you can also specify options and or flags of ps(1); in this case, Podman will fallback to executing ps with the specified arguments and flags in the container.

View file

@ -1,11 +1,17 @@
% podman-umount(1)
## NAME
podman\-umount - Unmount the specified working containers' root file system.
podman\-umount - Unmount a working container's root filesystem
## SYNOPSIS
**podman umount** *container* [...]
**podman container umount** *container* [...]
**podman container unmount** *container* [...]
**podman unmount** *container* [...]
## DESCRIPTION
Unmounts the specified containers' root file system, if no other processes
are using it.

View file

@ -6,6 +6,8 @@ podman\-unpause - Unpause one or more containers
## SYNOPSIS
**podman unpause** [*options*]|[*container* ...]
**podman container unpause** [*options*]|[*container* ...]
## DESCRIPTION
Unpauses the processes in one or more containers. You may use container IDs or names as input.

View file

@ -1,10 +1,10 @@
% podman-unshare(1)
## NAME
podman\-unshare - Run a command inside of a modified user namespace.
podman\-unshare - Run a command inside of a modified user namespace
## SYNOPSIS
**podman unshare** [*options*] [**--**] [*command*]
**podman unshare** [*options*] [*--*] [*command*]
## DESCRIPTION
Launches a process (by default, *$SHELL*) in a new user namespace. The user

View file

@ -1,7 +1,7 @@
% podman-version(1)
## NAME
podman\-version - Display the PODMAN Version Information
podman\-version - Display the Podman version information
## SYNOPSIS
**podman version** [*options*]

View file

@ -1,7 +1,7 @@
% podman-volume-inspect(1)
## NAME
podman\-volume\-inspect - Inspect one or more volumes
podman\-volume\-inspect - Get detailed information on one or more volumes
## SYNOPSIS
**podman volume inspect** [*options*] *volume* [...]

View file

@ -1,7 +1,7 @@
% podman-volume-ls(1)
## NAME
podman\-volume\-ls - List volumes
podman\-volume\-ls - List all the available volumes
## SYNOPSIS
**podman volume ls** [*options*]

View file

@ -1,7 +1,7 @@
% podman-volume(1)
## NAME
podman\-volume - Simple management tool for volumes.
podman\-volume - Simple management tool for volumes
## SYNOPSIS
**podman volume** *subcommand*

View file

@ -6,6 +6,8 @@ podman\-wait - Wait on one or more containers to stop and print their exit codes
## SYNOPSIS
**podman wait** [*options*] *container*
**podman container wait** [*options*] *container*
## DESCRIPTION
Waits on one or more containers to stop. The container can be referred to by its
name or ID. In the case of multiple containers, podman will wait on each consecutively.

View file

@ -153,15 +153,15 @@ the exit codes follow the `chroot` standard, see below:
| [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-info(1)](podman-info.1.md) | Displays Podman related system information. |
| [podman-init(1)](podman-init.1.md) | Initialize a container |
| [podman-init(1)](podman-init.1.md) | Initialize one or more containers |
| [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-load(1)](podman-load.1.md) | Load an image from a container image archive into container storage. |
| [podman-login(1)](podman-login.1.md) | Login to a container registry. |
| [podman-logout(1)](podman-logout.1.md) | Logout of a container registry. |
| [podman-logs(1)](podman-logs.1.md) | Display the logs of a container. |
| [podman-logs(1)](podman-logs.1.md) | Display the logs of one or more containers. |
| [podman-mount(1)](podman-mount.1.md) | Mount a working container's root filesystem. |
| [podman-network(1)](podman-network.1.md) | Manage Podman CNI networks. |
| [podman-network(1)](podman-network.1.md) | Manage Podman CNI networks. |
| [podman-pause(1)](podman-pause.1.md) | Pause one or more containers. |
| [podman-play(1)](podman-play.1.md) | Play pods and containers based on a structured input file. |
| [podman-pod(1)](podman-pod.1.md) | Management tool for groups of containers, called pods. |
@ -186,7 +186,7 @@ the exit codes follow the `chroot` standard, see below:
| [podman-unshare(1)](podman-unshare.1.md) | Run a command inside of a modified user namespace. |
| [podman-varlink(1)](podman-varlink.1.md) | Runs the varlink backend interface. |
| [podman-version(1)](podman-version.1.md) | Display the Podman version information. |
| [podman-volume(1)](podman-volume.1.md) | Manage 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. |
## FILES

View file

@ -39,8 +39,9 @@ done
# Pass 2: compare descriptions.
#
# Make sure the descriptive text in podman-foo.1.md matches the one
# in the table in podman.1.md.
for md in *.1.md;do
# in the table in podman.1.md. podman-remote is not a podman subcommand,
# so it is excluded here.
for md in $(ls -1 *-*.1.md | grep -v remote);do
desc=$(egrep -A1 '^#* NAME' $md|tail -1|sed -e 's/^podman[^ ]\+ - //')
# podman.1.md has a two-column table; podman-*.1.md all have three.