mirror of
https://github.com/containers/podman.git
synced 2025-08-06 19:44:14 +08:00
docs: Follow man-pages(7) suggestions for SYNOPSIS
man-pages(7) has [1]: > For commands, this shows the syntax of the command and its arguments > (including options); boldface is used for as-is text and italics are > used to indicate replaceable arguments. Brackets ([]) surround > optional arguments, vertical bars (|) separate choices, and ellipses > (...) can be repeated. I've adjusted our SYNOPSIS entries to match that formatting, and generally tried to make them more consistent with the precedent set by the man-pages project. Outside of the SYNOPSIS entry, I prefer using backticks for literals, although in some places I've left the ** bolding to keep things visually similar to a nearby SYNOPSIS entry. [1]: http://man7.org/linux/man-pages/man7/man-pages.7.html Signed-off-by: W. Trevor King <wking@tremily.us> Closes: #1027 Approved by: rhatdan
This commit is contained in:

committed by
Atomic Bot

parent
6d8fac87ed
commit
f2462ca59e
@ -4,7 +4,7 @@
|
|||||||
podman\-attach - Attach to a running container
|
podman\-attach - Attach to a running container
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman attach [OPTIONS] CONTAINER**
|
**podman attach** [*options*] *container*
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
The attach command allows you to attach to a running container using the container's ID
|
The attach command allows you to attach to a running container using the container's ID
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
podman\-build - Build a container image using a Dockerfile.
|
podman\-build - Build a container image using a Dockerfile.
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman** **build** [*options* [...]] **context**
|
**podman build** [*options*] *context*
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
**podman build** Builds an image using instructions from one or more Dockerfiles and a specified build context directory.
|
**podman build** Builds an image using instructions from one or more Dockerfiles and a specified build context directory.
|
||||||
|
@ -4,18 +4,18 @@
|
|||||||
podman\-commit - Create new image based on the changed container
|
podman\-commit - Create new image based on the changed container
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman commit** [*options* [...]] CONTAINER IMAGE
|
**podman commit** [*options*] *container* *image*
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
**podman commit** creates an image based on a changed container. The author of the
|
`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
|
image can be set using the `--author` flag. Various image instructions can be
|
||||||
configured with the **--change** flag and a commit message can be set using the
|
configured with the `--change` flag and a commit message can be set using the
|
||||||
**--message** flag. The container and its processes are paused while the image is
|
`--message` flag. The container and its processes are paused while the image is
|
||||||
committed. This minimizes the likelihood of data corruption when creating the new
|
committed. This minimizes the likelihood of data corruption when creating the new
|
||||||
image. If this is not desired, the **--pause** flag can be set to false. When the commit
|
image. If this is not desired, the `--pause` flag can be set to false. When the commit
|
||||||
is complete, podman will print out the ID of the new image.
|
is complete, podman will print out the ID of the new image.
|
||||||
|
|
||||||
If *imageName* does not begin with a registry name component, *localhost* will be added to the name.
|
If *image* does not begin with a registry name component, `localhost` will be added to the name.
|
||||||
|
|
||||||
## OPTIONS
|
## OPTIONS
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
podman\-container\-cleanup - Cleanup Container storage and networks
|
podman\-container\-cleanup - Cleanup Container storage and networks
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman container cleanup [OPTIONS] CONTAINER**
|
**podman container cleanup** [*options*] *container*
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
`podman container cleanup` cleans up exited containers by removing all mountpoints and network configuration from the host. The container name or ID can be used. The cleanup command does not remove the containers. Running containers will not be cleaned up.
|
`podman container cleanup` cleans up exited containers by removing all mountpoints and network configuration from the host. The container name or ID can be used. The cleanup command does not remove the containers. Running containers will not be cleaned up.
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
podman\-container - Manage containers
|
podman\-container - Manage containers
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman container SUBCOMMAND [OPTIONS]
|
**podman container** *subcommand*
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
The container command allows you to manage containers
|
The container command allows you to manage containers
|
||||||
|
@ -4,14 +4,14 @@
|
|||||||
podman\-create - Create a new container
|
podman\-create - Create a new container
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman create** [*options* [...]] IMAGE [COMMAND] [ARG...]
|
**podman create** [*options*] *image* [*command* [*arg* ...]]
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
|
|
||||||
Creates a writable container layer over the specified image and prepares it for
|
Creates a writable container layer over the specified image and prepares it for
|
||||||
running the specified command. The container ID is then printed to STDOUT. This
|
running the specified command. The container ID is then printed to STDOUT. This
|
||||||
is similar to **podman run -d** except the container is never started. You can
|
is similar to **podman run -d** except the container is never started. You can
|
||||||
then use the **podman start <container_id>** command to start the container at
|
then use the **podman start** *container* command to start the container at
|
||||||
any point.
|
any point.
|
||||||
|
|
||||||
The initial status of the container created with **podman create** is 'created'.
|
The initial status of the container created with **podman create** is 'created'.
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
podman\-diff - Inspect changes on a container or image's filesystem
|
podman\-diff - Inspect changes on a container or image's filesystem
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman** **diff** [*options* [...]] NAME
|
**podman diff** [*options*] *name*
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
Displays changes on a container or image's filesystem. The container or image will be compared to its parent layer
|
Displays changes on a container or image's filesystem. The container or image will be compared to its parent layer
|
||||||
|
@ -4,10 +4,7 @@
|
|||||||
podman\-exec - Execute a command in a running container
|
podman\-exec - Execute a command in a running container
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman exec**
|
**podman exec** *container* [*options*] [*command* [*arg* ...]]
|
||||||
**CONTAINER**
|
|
||||||
[COMMAND] [ARG...]
|
|
||||||
[**--help**|**-h**]
|
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
**podman exec** executes a command in a running container.
|
**podman exec** executes a command in a running container.
|
||||||
|
@ -4,15 +4,12 @@
|
|||||||
podman export - Export container's filesystem contents as a tar archive
|
podman export - Export container's filesystem contents as a tar archive
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman export**
|
**podman export** [*options*] *container*
|
||||||
**CONTAINER**
|
|
||||||
[**--output**|**-o**]
|
|
||||||
[**--help**|**-h**]
|
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
**podman export** exports the filesystem of a container and saves it as a tarball
|
**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
|
on the local machine. **podman export** writes to STDOUT by default and can be
|
||||||
redirected to a file using the **output flag**.
|
redirected to a file using the `--output` flag.
|
||||||
Note: `:` is a restricted character and cannot be part of the file name.
|
Note: `:` is a restricted character and cannot be part of the file name.
|
||||||
|
|
||||||
**podman [GLOBAL OPTIONS]**
|
**podman [GLOBAL OPTIONS]**
|
||||||
@ -27,6 +24,10 @@ Note: `:` is a restricted character and cannot be part of the file name.
|
|||||||
|
|
||||||
Write to a file, default is STDOUT
|
Write to a file, default is STDOUT
|
||||||
|
|
||||||
|
**--help**, **-h**
|
||||||
|
|
||||||
|
Print usage statement
|
||||||
|
|
||||||
## EXAMPLES
|
## EXAMPLES
|
||||||
|
|
||||||
```
|
```
|
||||||
|
@ -4,13 +4,7 @@
|
|||||||
podman\-history - Shows the history of an image
|
podman\-history - Shows the history of an image
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman history**
|
**podman history** [*options*] *image*[:*tag*|@*digest*]
|
||||||
**IMAGE[:TAG|DIGEST]**
|
|
||||||
[**--human**|**-H**]
|
|
||||||
[**--no-trunc**]
|
|
||||||
[**--quiet**|**-q**]
|
|
||||||
[**--format**]
|
|
||||||
[**--help**|**-h**]
|
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
**podman history** displays the history of an image by printing out information
|
**podman history** displays the history of an image by printing out information
|
||||||
@ -31,12 +25,6 @@ Valid placeholders for the Go template are listed below:
|
|||||||
| .Size | Size of layer on disk |
|
| .Size | Size of layer on disk |
|
||||||
| .Comment | Comment for the layer |
|
| .Comment | Comment for the layer |
|
||||||
|
|
||||||
**podman [GLOBAL OPTIONS]**
|
|
||||||
|
|
||||||
**podman history [GLOBAL OPTIONS]**
|
|
||||||
|
|
||||||
**podman history [OPTIONS] IMAGE[:TAG|DIGEST]**
|
|
||||||
|
|
||||||
## OPTIONS
|
## OPTIONS
|
||||||
|
|
||||||
**--human, -H**
|
**--human, -H**
|
||||||
@ -55,6 +43,9 @@ Print the numeric IDs only
|
|||||||
|
|
||||||
Alter the output for a format like 'json' or a Go template.
|
Alter the output for a format like 'json' or a Go template.
|
||||||
|
|
||||||
|
**--help**, **-h**
|
||||||
|
|
||||||
|
Print usage statement
|
||||||
|
|
||||||
## EXAMPLES
|
## EXAMPLES
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
podman\-image - Manage images
|
podman\-image - Manage images
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman image SUBCOMMAND [OPTIONS]
|
**podman image** *subcommand*
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
The image command allows you to manage images
|
The image command allows you to manage images
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
podman\-images - List images in local storage
|
podman\-images - List images in local storage
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman** **images** [*options* [...]]
|
**podman** **images** [*options*]
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
Displays locally stored images, their names, and their IDs.
|
Displays locally stored images, their names, and their IDs.
|
||||||
|
@ -4,12 +4,7 @@
|
|||||||
podman\-import - Import a tarball and save it as a filesystem image
|
podman\-import - Import a tarball and save it as a filesystem image
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman import**
|
**podman import** [*options*] *path*
|
||||||
**TARBALL**
|
|
||||||
[**--change**|**-c**]
|
|
||||||
[**--message**|**-m**]
|
|
||||||
[**--help**|**-h**]
|
|
||||||
[**-verbose**]
|
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
**podman import** imports a tarball (.tar, .tar.gz, .tgz, .bzip, .tar.xz, .txz)
|
**podman import** imports a tarball (.tar, .tar.gz, .tgz, .bzip, .tar.xz, .txz)
|
||||||
@ -18,12 +13,6 @@ Various image instructions can be configured with the **--change** flag and
|
|||||||
a commit message can be set using the **--message** flag.
|
a commit message can be set using the **--message** flag.
|
||||||
Note: `:` is a restricted character and cannot be part of the file name.
|
Note: `:` is a restricted character and cannot be part of the file name.
|
||||||
|
|
||||||
**podman [GLOBAL OPTIONS]**
|
|
||||||
|
|
||||||
**podman import [GLOBAL OPTIONS]**
|
|
||||||
|
|
||||||
**podman import [OPTIONS] CONTAINER**
|
|
||||||
|
|
||||||
## OPTIONS
|
## OPTIONS
|
||||||
|
|
||||||
**--change, -c**
|
**--change, -c**
|
||||||
@ -40,6 +29,14 @@ Set commit message for imported image
|
|||||||
|
|
||||||
Shows progress on the import
|
Shows progress on the import
|
||||||
|
|
||||||
|
**-verbose**
|
||||||
|
|
||||||
|
Print additional debugging information
|
||||||
|
|
||||||
|
**--help**, **-h**
|
||||||
|
|
||||||
|
Print usage statement
|
||||||
|
|
||||||
## EXAMPLES
|
## EXAMPLES
|
||||||
|
|
||||||
```
|
```
|
||||||
|
@ -5,7 +5,7 @@ podman\-info - Display system information
|
|||||||
|
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman** **info** [*options* [...]]
|
**podman info** [*options*]
|
||||||
|
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
podman\-inspect - Display a container or image's configuration
|
podman\-inspect - Display a container or image's configuration
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman** **inspect** [*options* [...]] name [...]
|
**podman inspect** [*options*] *name* ...
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
This displays the low-level information on containers and images identified by name or ID. By default, this will render
|
This displays the low-level information on containers and images identified by name or ID. By default, this will render
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
podman\-kill - Kills one or more containers with a signal
|
podman\-kill - Kills one or more containers with a signal
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman kill [OPTIONS] CONTAINER [...]**
|
**podman kill** [*options*] *container* ...
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
The main process inside each container specified will be sent SIGKILL, or any signal specified with option --signal.
|
The main process inside each container specified will be sent SIGKILL, or any signal specified with option --signal.
|
||||||
|
@ -4,11 +4,7 @@
|
|||||||
podman\-load - Load an image from docker archive
|
podman\-load - Load an image from docker archive
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman load**
|
**podman load** *name*[:*tag*|@*digest*]
|
||||||
**NAME[:TAG|@DIGEST]**
|
|
||||||
[**--input**|**-i**]
|
|
||||||
[**--quiet**|**-q**]
|
|
||||||
[**--help**|**-h**]
|
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
**podman load** copies an image from either **docker-archive** or **oci-archive** stored
|
**podman load** copies an image from either **docker-archive** or **oci-archive** stored
|
||||||
@ -38,6 +34,10 @@ Pathname of a signature policy file to use. It is not recommended that this
|
|||||||
option be used, as the default behavior of using the system-wide default policy
|
option be used, as the default behavior of using the system-wide default policy
|
||||||
(frequently */etc/containers/policy.json*) is most often preferred
|
(frequently */etc/containers/policy.json*) is most often preferred
|
||||||
|
|
||||||
|
**--help**, **-h**
|
||||||
|
|
||||||
|
Print usage statement
|
||||||
|
|
||||||
## EXAMPLES
|
## EXAMPLES
|
||||||
|
|
||||||
```
|
```
|
||||||
|
@ -4,12 +4,7 @@
|
|||||||
podman\-login - Login to a container registry
|
podman\-login - Login to a container registry
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman login**
|
**podman login** [*options*] *registry*
|
||||||
[**--help**|**-h**]
|
|
||||||
[**--authfile**]
|
|
||||||
[**--user**|**-u**]
|
|
||||||
[**--password**|**-p**]
|
|
||||||
**REGISTRY**
|
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
**podman login** logs into a specified registry server with the correct username
|
**podman login** logs into a specified registry server with the correct username
|
||||||
@ -47,6 +42,10 @@ Default certificates directory is _/etc/containers/certs.d_.
|
|||||||
|
|
||||||
Require HTTPS and verify certificates when contacting registries (default: true)
|
Require HTTPS and verify certificates when contacting registries (default: true)
|
||||||
|
|
||||||
|
**--help**, **-h**
|
||||||
|
|
||||||
|
Print usage statement
|
||||||
|
|
||||||
## EXAMPLES
|
## EXAMPLES
|
||||||
|
|
||||||
```
|
```
|
||||||
|
@ -4,11 +4,7 @@
|
|||||||
podman\-logout - Logout of a container registry
|
podman\-logout - Logout of a container registry
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman logout**
|
**podman logout** [*options*] *registry*
|
||||||
[**--help**|**-h**]
|
|
||||||
[**--authfile**]
|
|
||||||
[**--all**|**-a**]
|
|
||||||
**REGISTRY**
|
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
**podman logout** logs out of a specified registry server by deleting the cached credentials
|
**podman logout** logs out of a specified registry server by deleting the cached credentials
|
||||||
@ -32,6 +28,10 @@ Path of the authentication file. Default is ${XDG_\RUNTIME\_DIR}/containers/auth
|
|||||||
|
|
||||||
Remove the cached credentials for all registries in the auth file
|
Remove the cached credentials for all registries in the auth file
|
||||||
|
|
||||||
|
**--help**, **-h**
|
||||||
|
|
||||||
|
Print usage statement
|
||||||
|
|
||||||
## EXAMPLES
|
## EXAMPLES
|
||||||
|
|
||||||
```
|
```
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
podman\-logs - Fetch the logs of a container
|
podman\-logs - Fetch the logs of a container
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman** **logs** [*options* [...]] container
|
**podman** **logs** [*options*] *container*
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
The podman logs command batch-retrieves whatever logs are present for a container at the time of execution.
|
The podman logs command batch-retrieves whatever logs are present for a container at the time of execution.
|
||||||
|
@ -4,9 +4,7 @@
|
|||||||
podman\-mount - Mount the specifed working containers' root filesystem
|
podman\-mount - Mount the specifed working containers' root filesystem
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman** **mount**
|
**podman** **mount** [*container* ...]
|
||||||
|
|
||||||
**podman** **mount** **containerID [...]**
|
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
Mounts the specified containers' root file system in a location which can be
|
Mounts the specified containers' root file system in a location which can be
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
podman\-pause - Pause one or more containers
|
podman\-pause - Pause one or more containers
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman pause [OPTIONS] CONTAINER [...]**
|
**podman pause** [*options*] *container* ...
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
Pauses all the processes in one or more containers. You may use container IDs or names as input.
|
Pauses all the processes in one or more containers. You may use container IDs or names as input.
|
||||||
|
@ -4,10 +4,10 @@
|
|||||||
podman\-port - List port mappings for a container
|
podman\-port - List port mappings for a container
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman port [OPTIONS] CONTAINER [PRIVATE_PORT[/PROTO]]**
|
**podman port** [*options*] *container* [*private-port*[/*proto*]]
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
List port mappings for the CONTAINER, or lookup the public-facing port that is NAT-ed to the PRIVATE_PORT
|
List port mappings for the *container* or lookup the public-facing port that is NAT-ed to the *private-port*.
|
||||||
|
|
||||||
## OPTIONS
|
## OPTIONS
|
||||||
|
|
||||||
|
@ -4,12 +4,7 @@
|
|||||||
podman\-ps - Prints out information about containers
|
podman\-ps - Prints out information about containers
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman ps**
|
**podman ps** [*options*]
|
||||||
[**--all**|**-a**]
|
|
||||||
[**--no-trunc**]
|
|
||||||
[**--quiet**|**-q**]
|
|
||||||
[**--format**]
|
|
||||||
[**--help**|**-h**]
|
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
**podman ps** lists the running containers on the system. Use the **--all** flag to view
|
**podman ps** lists the running containers on the system. Use the **--all** flag to view
|
||||||
@ -23,12 +18,6 @@ all the containers information. By default it lists:
|
|||||||
* port mappings the container is using
|
* port mappings the container is using
|
||||||
* alternative names for the container
|
* alternative names for the container
|
||||||
|
|
||||||
**podman [GLOBAL OPTIONS]**
|
|
||||||
|
|
||||||
**podman ps [GLOBAL OPTIONS]**
|
|
||||||
|
|
||||||
**podman ps [OPTIONS]**
|
|
||||||
|
|
||||||
## OPTIONS
|
## OPTIONS
|
||||||
|
|
||||||
**--all, -a**
|
**--all, -a**
|
||||||
@ -103,6 +92,10 @@ Valid filters are listed below:
|
|||||||
| since | [ID] or [Name] Containers created since this container |
|
| since | [ID] or [Name] Containers created since this container |
|
||||||
| volume | [VolumeName] or [MountpointDestination] Volume mounted in container |
|
| volume | [VolumeName] or [MountpointDestination] Volume mounted in container |
|
||||||
|
|
||||||
|
**--help**, **-h**
|
||||||
|
|
||||||
|
Print usage statement
|
||||||
|
|
||||||
## EXAMPLES
|
## EXAMPLES
|
||||||
|
|
||||||
```
|
```
|
||||||
|
@ -4,9 +4,7 @@
|
|||||||
podman\-pull - Pull an image from a registry
|
podman\-pull - Pull an image from a registry
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman pull**
|
**podman pull** [*options*] *name*[:*tag*|@*digest*]
|
||||||
**NAME[:TAG|@DIGEST]**
|
|
||||||
[**--help**|**-h**]
|
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
Copies an image from a registry onto the local machine. **podman pull** pulls an
|
Copies an image from a registry onto the local machine. **podman pull** pulls an
|
||||||
@ -14,7 +12,7 @@ image from Docker Hub if a registry is not specified in the command line argumen
|
|||||||
If an image tag is not specified, **podman pull** defaults to the image with the
|
If an image tag is not specified, **podman pull** defaults to the image with the
|
||||||
**latest** tag (if it exists) and pulls it. After the image is pulled, podman will
|
**latest** tag (if it exists) and pulls it. After the image is pulled, podman will
|
||||||
print the full image ID. **podman pull** can also pull an image
|
print the full image ID. **podman pull** can also pull an image
|
||||||
using its digest **podman pull [image]@[digest]**. **podman pull** can be used to pull
|
using its digest **podman pull** *image*@*digest*. **podman pull** can be used to pull
|
||||||
images from archives and local storage using different transports.
|
images from archives and local storage using different transports.
|
||||||
|
|
||||||
## imageID
|
## imageID
|
||||||
@ -45,12 +43,6 @@ Image stored in local container/storage
|
|||||||
**ostree:**_image_[**@**_/absolute/repo/path_]
|
**ostree:**_image_[**@**_/absolute/repo/path_]
|
||||||
An image in local OSTree repository. _/absolute/repo/path_ defaults to _/ostree/repo_.
|
An image in local OSTree repository. _/absolute/repo/path_ defaults to _/ostree/repo_.
|
||||||
|
|
||||||
**podman [GLOBAL OPTIONS]**
|
|
||||||
|
|
||||||
**podman pull [GLOBAL OPTIONS]**
|
|
||||||
|
|
||||||
**podman pull NAME[:TAG|@DIGEST]**
|
|
||||||
|
|
||||||
## OPTIONS
|
## OPTIONS
|
||||||
|
|
||||||
**--authfile**
|
**--authfile**
|
||||||
@ -85,6 +77,10 @@ Require HTTPS and verify certificates when contacting registries (default: true)
|
|||||||
then tls verification will be used, If set to false then tls verification will not be used. If not specified
|
then tls verification will be used, If set to false then tls verification will not be used. If not specified
|
||||||
tls verification will be used unless the target registry is listed as an insecure registry in registries.conf.
|
tls verification will be used unless the target registry is listed as an insecure registry in registries.conf.
|
||||||
|
|
||||||
|
**--help**, **-h**
|
||||||
|
|
||||||
|
Print usage statement
|
||||||
|
|
||||||
## EXAMPLES
|
## EXAMPLES
|
||||||
|
|
||||||
```
|
```
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
podman\-push - Push an image from local storage to elsewhere
|
podman\-push - Push an image from local storage to elsewhere
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman** **push** [*options* [...]] **imageID** [**destination**]
|
**podman push** [*options*] **image** [**destination**]
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
Pushes an image from local storage to a specified destination.
|
Pushes an image from local storage to a specified destination.
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
podman\-restart - Restart a container
|
podman\-restart - Restart a container
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman attach [OPTIONS] CONTAINER [CONTAINER...]**
|
**podman attach** [*options*] *container* ...
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
The restart command allows containers to be restarted using their ID or name.
|
The restart command allows containers to be restarted using their ID or name.
|
||||||
|
@ -4,10 +4,10 @@
|
|||||||
podman\-rm - Remove one or more containers
|
podman\-rm - Remove one or more containers
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman** **rm** [*options* [...]] container
|
**podman rm** [*options*] *container*
|
||||||
|
|
||||||
## DESCRIPTION
|
## 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
|
**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
|
||||||
|
|
||||||
## OPTIONS
|
## OPTIONS
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
podman\-rmi - Removes one or more images
|
podman\-rmi - Removes one or more images
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman** **rmi** **imageID [...]**
|
**podman rmi** *image* ...
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
Removes one or more locally stored images.
|
Removes one or more locally stored images.
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
podman\-run - Run a command in a new container
|
podman\-run - Run a command in a new container
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman run** [*options* [...]] IMAGE [COMMAND] [ARG...]
|
**podman run** [*options*] *image* [*command* [*arg* ...]]
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
|
|
||||||
|
@ -4,12 +4,7 @@
|
|||||||
podman\-save - Save an image to docker-archive or oci-archive
|
podman\-save - Save an image to docker-archive or oci-archive
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman save**
|
**podman save** [*options*] *name*[:*tag*]
|
||||||
**NAME[:TAG]**
|
|
||||||
[**--quiet**|**-q**]
|
|
||||||
[**--format**]
|
|
||||||
[**--output**|**-o**]
|
|
||||||
[**--help**|**-h**]
|
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
**podman save** saves an image to either **docker-archive**, **oci-archive**, **oci-dir** (directory
|
**podman save** saves an image to either **docker-archive**, **oci-archive**, **oci-dir** (directory
|
||||||
@ -48,6 +43,10 @@ Save image to **oci-archive**, **oci-dir** (directory with oci manifest type), o
|
|||||||
|
|
||||||
Suppress the output
|
Suppress the output
|
||||||
|
|
||||||
|
**--help**, **-h**
|
||||||
|
|
||||||
|
Print usage statement
|
||||||
|
|
||||||
## EXAMPLES
|
## EXAMPLES
|
||||||
|
|
||||||
```
|
```
|
||||||
|
@ -4,14 +4,7 @@
|
|||||||
podman\-search - Search a registry for an image
|
podman\-search - Search a registry for an image
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman search**
|
**podman search** [*options*] *term*
|
||||||
**TERM**
|
|
||||||
[**--filter**|**-f**]
|
|
||||||
[**--format**]
|
|
||||||
[**--limit**]
|
|
||||||
[**--no-trunc**]
|
|
||||||
[**--registry**]
|
|
||||||
[**--help**|**-h**]
|
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
**podman search** searches a registry or a list of registries for a matching image.
|
**podman search** searches a registry or a list of registries for a matching image.
|
||||||
@ -78,6 +71,10 @@ then tls verification will be used. If set to false then tls verification will n
|
|||||||
default registries will be searched through (in /etc/containers/registries.conf), and tls will be skipped if a default
|
default registries will be searched through (in /etc/containers/registries.conf), and tls will be skipped if a default
|
||||||
registry is listed in the insecure registries.
|
registry is listed in the insecure registries.
|
||||||
|
|
||||||
|
**--help**, **-h**
|
||||||
|
|
||||||
|
Print usage statement
|
||||||
|
|
||||||
## EXAMPLES
|
## EXAMPLES
|
||||||
|
|
||||||
```
|
```
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
podman\-start - Start one or more containers
|
podman\-start - Start one or more containers
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman start [OPTIONS] CONTAINER [...]**
|
**podman start** [*options*] *container* ...
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
Start one or more containers. You may use container IDs or names as input. The *attach* and *interactive*
|
Start one or more containers. You may use container IDs or names as input. The *attach* and *interactive*
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
podman\-stats - Display a live stream of 1 or more containers' resource usage statistics
|
podman\-stats - Display a live stream of 1 or more containers' resource usage statistics
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman** **stats** [*options* [...]] [container]
|
**podman stats** [*options*] [*container*]
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
Display a live stream of one or more containers' resource usage statistics
|
Display a live stream of one or more containers' resource usage statistics
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
podman\-stop - Stop one or more containers
|
podman\-stop - Stop one or more containers
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman stop [OPTIONS] CONTAINER [...]**
|
**podman stop** [*options*] *container* ...
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
Stops one or more containers. You may use container IDs or names as input. The **--timeout** switch
|
Stops one or more containers. You may use container IDs or names as input. The **--timeout** switch
|
||||||
|
@ -4,14 +4,19 @@
|
|||||||
podman\-tag - Add an additional name to a local image
|
podman\-tag - Add an additional name to a local image
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman [GLOBAL OPTIONS] tag IMAGE[:TAG] TARGET_NAME[:TAG]**
|
**podman tag** *image*[:*tag*] *target-name*[:*tag*]
|
||||||
[**--help**|**-h**]
|
[**--help**|**-h**]
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
Assigns a new alias to an image. An alias refers to the entire image name, including the optional
|
Assigns a new alias to an image. An alias refers to the entire image name, including the optional
|
||||||
**TAG** after the ':' If you do not provide a :TAG, podman will assume a :TAG of "latest" for both
|
*tag* after the `:`. If you do not provide *tag*, podman will default to `latest` for both
|
||||||
the IMAGE and the TARGET_NAME.
|
the *image* and the *target-name*.
|
||||||
|
|
||||||
|
## OPTIONS
|
||||||
|
|
||||||
|
**--help**, **-h**
|
||||||
|
|
||||||
|
Print usage statement
|
||||||
|
|
||||||
## EXAMPLES
|
## EXAMPLES
|
||||||
|
|
||||||
|
@ -4,13 +4,10 @@
|
|||||||
podman\-top - Display the running processes of a container
|
podman\-top - Display the running processes of a container
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman top**
|
**podman top** [*options*] *container* [*ps-options*]
|
||||||
[**--help**|**-h**]
|
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
Display the running process of the container. ps-OPTION can be any of the options you would pass to a Linux ps command
|
Display the running process of the container. *ps-options* can be any of the options you would pass to `ps(1)`.
|
||||||
|
|
||||||
**podman [GLOBAL OPTIONS] top [OPTIONS]**
|
|
||||||
|
|
||||||
## OPTIONS
|
## OPTIONS
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
podman\-umount - Unmount the specified working containers' root file system.
|
podman\-umount - Unmount the specified working containers' root file system.
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman** **umount** **containerID [...]**
|
**podman umount** *container* ...
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
Unmounts the specified containers' root file system.
|
Unmounts the specified containers' root file system.
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
podman\-unpause - Unpause one or more containers
|
podman\-unpause - Unpause one or more containers
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman unpause [OPTIONS] CONTAINER [...]**
|
**podman unpause** [*options*] *container* ...
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
Unpauses the processes in one or more containers. You may use container IDs or names as input.
|
Unpauses the processes in one or more containers. You may use container IDs or names as input.
|
||||||
|
@ -4,16 +4,12 @@
|
|||||||
podman\-varlink - Runs the varlink backend interface
|
podman\-varlink - Runs the varlink backend interface
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman varlink** [OPTIONS]
|
**podman varlink** [*options*] *uri*
|
||||||
[**--help**|**-h**]
|
|
||||||
VARLINK_URI
|
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
Starts the varlink service that allows varlink clients to interact with podman. This should generally be done
|
Starts the varlink service listening on *uri* that allows varlink clients to interact with podman. This should generally be done
|
||||||
with systemd. See _Configuration_ below.
|
with systemd. See _Configuration_ below.
|
||||||
|
|
||||||
**podman [GLOBAL OPTIONS] [OPTIONS] varlink VARLINK_URI**
|
|
||||||
|
|
||||||
## GLOBAL OPTIONS
|
## GLOBAL OPTIONS
|
||||||
|
|
||||||
**--help, -h**
|
**--help, -h**
|
||||||
|
@ -4,16 +4,17 @@
|
|||||||
podman\-version - Display the PODMAN Version Information
|
podman\-version - Display the PODMAN Version Information
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman version**
|
**podman version** [*options*]
|
||||||
[**--help**|**-h**]
|
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
Shows the the following information: Version, Go Version, Git Commit, Build Time,
|
Shows the the following information: Version, Go Version, Git Commit, Build Time,
|
||||||
OS, and Architecture.
|
OS, and Architecture.
|
||||||
|
|
||||||
**podman [GLOBAL OPTIONS]**
|
## OPTIONS
|
||||||
|
|
||||||
**podman version**
|
**--help**, **-h**
|
||||||
|
|
||||||
|
Print usage statement
|
||||||
|
|
||||||
## SEE ALSO
|
## SEE ALSO
|
||||||
podman(1), crio(8)
|
podman(1), crio(8)
|
||||||
|
@ -4,17 +4,14 @@
|
|||||||
podman\-wait - Waits on one or more containers to stop and prints exit code
|
podman\-wait - Waits on one or more containers to stop and prints exit code
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman wait**
|
**podman wait** [*options*] *container*
|
||||||
[**--help**|**-h**]
|
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
Waits on one or more containers to stop. The container can be referred to by its
|
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.
|
name or ID. In the case of multiple containers, podman will wait on each consecutively.
|
||||||
After the container stops, the container's return code is printed.
|
After the container stops, the container's return code is printed.
|
||||||
|
|
||||||
**podman [GLOBAL OPTIONS] wait **
|
## OPTIONS
|
||||||
|
|
||||||
## GLOBAL OPTIONS
|
|
||||||
|
|
||||||
**--help, -h**
|
**--help, -h**
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
podman - Simple management tool for containers and images
|
podman - Simple management tool for containers and images
|
||||||
|
|
||||||
## SYNOPSIS
|
## SYNOPSIS
|
||||||
**podman** [*options*] COMMAND
|
**podman** [*options*] *command*
|
||||||
|
|
||||||
# DESCRIPTION
|
# DESCRIPTION
|
||||||
podman is a simple client only tool to help with debugging issues when daemons
|
podman is a simple client only tool to help with debugging issues when daemons
|
||||||
|
Reference in New Issue
Block a user