List Images
GET /images/json
Example request:
Example response:
Example request, with digest information:
Example response, with digest information:
The response shows a single image Id
associated with two repositories (RepoTags
): localhost:5000/test/busybox
: and playdate
. A caller can use either of the RepoTags
values localhost:5000/test/busybox:latest
or playdate:latest
to reference the image.
You can also use RepoDigests
values to reference an image. In this response, the array has only one reference and that is to the localhost:5000/test/busybox
repository; the playdate
repository has no digest. You can reference this digest using the value: localhost:5000/test/busybox@sha256:cbbf2f9a99b47fc460d...
See the hyper run
and hyper build
commands for examples of digest and tag references on the command line.
Query Parameters:
all – 1/True/true or 0/False/false, default false
filters – a JSON encoded value of the filters (a map[string][]string) to process on the images list. Available filters:
dangling=true
label=key
orlabel="key=value"
of an image label
filter - only return images with the specified name
Last updated