1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-11 07:29:40 +00:00
gcloud-help/gcloud/artifacts/docker/images/describe
2023-06-28 10:42:37 +00:00

90 lines
3 KiB
Text

NAME
gcloud artifacts docker images describe - describe an Artifact Registry
container image
SYNOPSIS
gcloud artifacts docker images describe IMAGE
[--metadata-filter=METADATA_FILTER] [--show-all-metadata]
[--show-build-details] [--show-deployment] [--show-image-basis]
[--show-package-vulnerability] [--show-provenance]
[--show-sbom-references] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
Reference an image by tag or digest using the format:
LOCATION-docker.pkg.dev/PROJECT-ID/REPOSITORY-ID/IMAGE:tag
LOCATION-docker.pkg.dev/PROJECT-ID/REPOSITORY-ID/IMAGE@sha256:digest
This command can fail for the following reasons:
▪ The repository format is invalid.
▪ The specified image does not exist.
▪ The active account does not have permission to view images.
EXAMPLES
To describe an image digest abcxyz under image busy-box:
$ gcloud artifacts docker images describe \
us-west1-docker.pkg.dev/my-project/my-repository/\
busy-box@sha256:abcxyz
To describe an image busy-box with tag my-tag:
$ gcloud artifacts docker images describe \
us-west1-docker.pkg.dev/my-project/my-repository/busy-box:my-tag
POSITIONAL ARGUMENTS
IMAGE
A container image.
A valid container image has the format of
LOCATION-docker.pkg.dev/PROJECT-ID/REPOSITORY-ID/IMAGE
A valid container image that can be referenced by tag or digest, has
the format of
LOCATION-docker.pkg.dev/PROJECT-ID/REPOSITORY-ID/IMAGE:tag
LOCATION-docker.pkg.dev/PROJECT-ID/REPOSITORY-ID/IMAGE@sha256:digest
FLAGS
--metadata-filter=METADATA_FILTER
Additional filter to fetch metadata for a given qualified image
reference.
--show-all-metadata
Include all metadata in the output. Metadata will be grouped by Grafeas
kind, with an additional section for intoto provenance metadata.
--show-build-details
Include build metadata in the output.
--show-deployment
Include deployment metadata in the output.
--show-image-basis
Include base image metadata in the output.
--show-package-vulnerability
Include vulnerability metadata in the output.
--show-provenance
Include intoto provenance metadata in the output, in the
provenance_summary section. To see all build metadata in the output,
use --show-all-metadata or --show-build-details.
--show-sbom-references
Include SBOM metadata in the output.
GCLOUD WIDE FLAGS
These flags are available to all commands: --access-token-file, --account,
--billing-project, --configuration, --flags-file, --flatten, --format,
--help, --impersonate-service-account, --log-http, --project, --quiet,
--trace-token, --user-output-enabled, --verbosity.
Run $ gcloud help for details.
NOTES
These variants are also available:
$ gcloud alpha artifacts docker images describe
$ gcloud beta artifacts docker images describe