mirror of
https://github.com/containers/podman.git
synced 2025-05-17 06:59:07 +08:00

On Mac and Windows systems the --latest option is not supported this PR mentions this fact in the examples section of the man page. Also added documentation and consistency to the man pages examples sections. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
1013 B
1013 B
% podman-secret-rm 1
NAME
podman-secret-rm - Remove one or more secrets
SYNOPSIS
podman secret rm [options] secret [...]
DESCRIPTION
Removes one or more secrets.
podman secret rm
is safe to use on secrets that are in use by a container.
The created container has access to the secret data because secrets are
copied and mounted into the container when a container is created. If a secret is deleted and
another secret is created with the same name, the secret inside the container does not change;
the old secret value still remains.
OPTIONS
--all, -a
Remove all existing secrets.
--help
Print usage statement.
--ignore, -i
Ignore errors when specified secrets are not present.
EXAMPLES
Remove secrets mysecret1 and mysecret2.
$ podman secret rm mysecret1 mysecret2
SEE ALSO
HISTORY
January 2021, Originally compiled by Ashley Cui acui@redhat.com