LinuxCommandLibrary

docker-load

TLDR

Load image from tar file

$ docker load -i [image.tar]
copy
Load from stdin
$ cat [image.tar] | docker load
copy
Load compressed archive
$ gunzip -c [image.tar.gz] | docker load
copy
Load with quiet output
$ docker load -q -i [image.tar]
copy

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

Copied to clipboard