docker-load
TLDR
Load image from tar file
$ docker load -i [image.tar]
Load from stdin$ cat [image.tar] | docker load
Load compressed archive$ gunzip -c [image.tar.gz] | docker load
Load with quiet output$ docker load -q -i [image.tar]
SYNOPSIS
docker load [options]
DESCRIPTION
docker load loads an image from a tar archive or STDIN. Restores both images and tags saved by docker save.
PARAMETERS
-i, --input file
Read from tar archive file.-q, --quiet
Suppress load output.
SEE ALSO
docker-image-load(1), docker-save(1)


