docker-load
Load Docker images from files or stdin.
TLDR
Load a Docker image from stdin
$ docker load < [path/to/image_file.tar]
Load a Docker image from a specific file
$ docker load --input [path/to/image_file.tar]
Load a Docker image from a specific file in quiet mode
$ docker load --quiet --input [path/to/image_file.tar]
SYNOPSIS
docker load [OPTIONS]
DESCRIPTION
Alias for docker image load.
OPTIONS
-h, --help[=false] help for load
-i, --input="" Read from tar archive file, instead of STDIN
-q, --quiet[=false] Suppress the load output
SEE ALSO
docker(1)