mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
f687616995
Signed-off-by: yuexiao-wang <wang.yuexiao@zte.com.cn>
(cherry picked from commit b4306588e9
)
Signed-off-by: Victor Vieux <victorvieux@gmail.com>
43 lines
1.1 KiB
Markdown
43 lines
1.1 KiB
Markdown
---
|
|
title: "secret ls"
|
|
description: "The secret ls command description and usage"
|
|
keywords: ["secret, ls"]
|
|
---
|
|
|
|
<!-- This file is maintained within the docker/docker Github
|
|
repository at https://github.com/docker/docker/. Make all
|
|
pull requests against that repo. If you see this file in
|
|
another repository, consider it read-only there, as it will
|
|
periodically be overwritten by the definitive file. Pull
|
|
requests which include edits to this file in other repositories
|
|
will be rejected.
|
|
-->
|
|
|
|
# secret ls
|
|
|
|
```Markdown
|
|
Usage: docker secret ls [OPTIONS]
|
|
|
|
List secrets
|
|
|
|
Aliases:
|
|
ls, list
|
|
|
|
Options:
|
|
-q, --quiet Only display IDs
|
|
```
|
|
|
|
Run this command on a manager node to list the secrets in the Swarm.
|
|
|
|
## Examples
|
|
|
|
```bash
|
|
$ docker secret ls
|
|
ID NAME CREATED UPDATED
|
|
mhv17xfe3gh6xc4rij5orpfds secret.json 2016-10-27 23:25:43.909181089 +0000 UTC 2016-10-27 23:25:43.909181089 +0000 UTC
|
|
```
|
|
## Related information
|
|
|
|
* [secret create](secret_create.md)
|
|
* [secret inspect](secret_inspect.md)
|
|
* [secret rm](secret_rm.md)
|