NAME¶ 名称
podman-volume-rm - Remove one or more volumes
podman-volume-rm - 删除一个或多个卷
SYNOPSIS¶ 概要
podman volume rm [options] volume […]
podman volume rm [选项] 卷 […]
DESCRIPTION¶ 描述
Removes one or more volumes. Only volumes that are not being used are removed.
If a volume is being used by a container, an error is returned unless the --force
flag is being used. To remove all volumes, use the --all flag.
Volumes can be removed individually by providing their full name or a unique partial name.
删除一个或多个卷。仅删除未被使用的卷。如果卷被容器使用,除非使用 --force 标志,否则会返回错误。要删除所有卷,请使用 --all 标志。可以通过提供完整名称或唯一部分名称来单独删除卷。
OPTIONS¶ 选项
--all, -a¶
Remove all volumes. 删除所有卷。
--force, -f¶
Remove a volume by force.
If it is being used by containers, the containers are removed first.
强制删除一个卷。如果它正在被容器使用,容器将首先被删除。
--help¶ --帮助 ¶
Print usage statement 打印使用说明
--time, -t=seconds¶ --time, -t=秒数
Seconds to wait before forcibly stopping running containers that are using the specified volume. The --force option must be specified to use the --time option. Use -1 for infinite wait.
在强制停止正在使用指定卷的运行容器之前等待的秒数。必须指定 --force 选项才能使用 --time 选项。使用 -1 表示无限等待。
EXAMPLES¶ 示例
Remove multiple specified volumes.
删除多个指定的卷。
$ podman volume rm myvol1 myvol2
Remove all volumes. 删除所有卷。
$ podman volume rm --all
Remove the specified volume even if it is in use. Note, this removes all containers using the volume.
即使卷正在使用,也要删除指定的卷。请注意,这将删除使用该卷的所有容器。
$ podman volume rm --force myvol
Exit Status¶ 退出状态 ¶
0 All specified volumes removed
0 所有指定的卷已被移除
1 One of the specified volumes did not exist, and no other failures
1 指定的卷中有一个不存在,且没有其他失败
2 One of the specified volumes is being used by a container
2 指定的卷中有一个正在被容器使用
125 The command fails for any other reason
125 由于其他原因命令失败
SEE ALSO¶ 参见 ¶
podman(1), podman-volume(1)
podman(1),podman-volume(1)
HISTORY¶ 历史 ¶
November 2018, Originally compiled by Urvashi Mohnani umohnani@redhat.com
2018 年 11 月,最初由 Urvashi Mohnani umohnani@redhat.com 编译