From dbd460a21669a6b251077223bb73ce8e65d137d1 Mon Sep 17 00:00:00 2001 From: Wayne Cheng Date: Mon, 1 Jan 2024 16:29:20 +0800 Subject: [PATCH] docs generate for `docker manifest ls` Signed-off-by: Wayne Cheng --- docs/reference/commandline/manifest.md | 1 + docs/reference/commandline/manifest_ls.md | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 docs/reference/commandline/manifest_ls.md diff --git a/docs/reference/commandline/manifest.md b/docs/reference/commandline/manifest.md index 2d12c76d97..545023c8c8 100644 --- a/docs/reference/commandline/manifest.md +++ b/docs/reference/commandline/manifest.md @@ -21,6 +21,7 @@ For full details on using docker manifest lists, see the registry v2 specificati | [`annotate`](manifest_annotate.md) | Add additional information to a local image manifest | | [`create`](manifest_create.md) | Create a local manifest list for annotating and pushing to a registry | | [`inspect`](manifest_inspect.md) | Display an image manifest, or manifest list | +| [`ls`](manifest_ls.md) | List local manifest lists | | [`push`](manifest_push.md) | Push a manifest list to a repository | | [`rm`](manifest_rm.md) | Delete one or more manifest lists from local storage | diff --git a/docs/reference/commandline/manifest_ls.md b/docs/reference/commandline/manifest_ls.md new file mode 100644 index 0000000000..1fd0fc6842 --- /dev/null +++ b/docs/reference/commandline/manifest_ls.md @@ -0,0 +1,19 @@ +# docker manifest ls + + +List local manifest lists + +### Aliases + +`docker manifest ls`, `docker manifest list` + +### Options + +| Name | Type | Default | Description | +|:----------------|:---------|:--------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| `--format` | `string` | | Format output using a custom template:
'table': Print output in table format with column headers (default)
'table TEMPLATE': Print output in table format using the given Go template
'json': Print in JSON format
'TEMPLATE': Print output using the given Go template.
Refer to https://docs.docker.com/go/formatting/ for more information about formatting output with templates | +| `-q`, `--quiet` | | | Only show manifest list NAMEs | + + + +