LinuxCommandLibrary

docker-load

load Docker images from tar archives

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. This command is the counterpart to docker save, enabling image transfer between systems without using a registry. Useful for air-gapped environments or offline distribution.

PARAMETERS

-i, --input file

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

SEE ALSO

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard

> TERMINAL_GEAR

Curated for the Linux community