image

docker search   Search the Docker Hub for images
docker pull     Pull an image or a repository from a registry
Searching an image from Docker Hub.
Pulling an image from Docker Hub.
Searching and pulling an image from Docker Hub.

docker build    Build an image from a Dockerfile
docker builder  Manage builds
docker buildx   Use extended build capabilities with BuildKit
Build an image from a Dockerfile
Manage builds
Use extended build capabilities with BuildKit

docker commit   Create a new image from a container's changes
docker rmi      Remove one or more images
Create a new image from a container's changes
Remove one or more images

docker images   List images
docker image    Manage images
docker history  Show the history of an image
List images
Manage images
Show the history of an image

docker save     Save one or more images to a tar archive (streamed to STDOUT by default)
docker load     Load an image from a tar archive or STDIN
Save one or more images to a tar archive (streamed to STDOUT by default)
Load an image from a tar archive or STDIN

docker tag      Create a tag TARGET_IMAGE that refers to SOURCE_IMAGE
docker push     Push an image or a repository to a registry
Create a tag TARGET_IMAGE that refers to SOURCE_IMAGE
Push an image or a repository to a registry

docker manifest Manage Docker image manifests and manifest lists. 
docker trust    Manage trust on Docker images. 
Manage Docker image manifests and manifest lists
Manage trust on Docker images

A single manifest is information about an image, such as layers, size, and digest. The docker manifest command also gives users additional information such as the os and architecture an image was built for. A manifest list is a list of image layers that is created by specifying one or more (ideally more than one) image names. It can then be used in the same way as an image name in docker pull and docker run commands, for example.

Docker Content Trust (DCT) provides the ability to use digital signatures for data sent to and received from remote Docker registries. These signatures allow client-side or runtime verification of the integrity and publisher of specific image tags.