LinuxCommandLibrary

docker-image-load

TLDR

Load image from tar archive

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

SYNOPSIS

docker image load [options]

DESCRIPTION

docker image load loads an image from a tar archive created by docker save. Used for transferring images between systems without a registry.

PARAMETERS

-i, --input file

Read from tar archive file.
-q, --quiet
Suppress load output.

SEE ALSO

Copied to clipboard