github.com/justincormack/cli@v0.0.0-20201215022714-831ebeae9675/man/src/image/load.md (about)

     1  Loads a tarred repository from a file or the standard input stream.
     2  Restores both images and tags. Write image names or IDs imported it
     3  standard output stream.
     4  
     5  # EXAMPLES
     6  
     7      $ docker images
     8      REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
     9      busybox             latest              769b9341d937        7 weeks ago         2.489 MB
    10      $ docker load --input fedora.tar
    11      # […]
    12      Loaded image: fedora:rawhide
    13      # […]
    14      Loaded image: fedora:20
    15      # […]
    16      $ docker images
    17      REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
    18      busybox             latest              769b9341d937        7 weeks ago         2.489 MB
    19      fedora              rawhide             0d20aec6529d        7 weeks ago         387 MB
    20      fedora              20                  58394af37342        7 weeks ago         385.5 MB
    21      fedora              heisenbug           58394af37342        7 weeks ago         385.5 MB
    22      fedora              latest              58394af37342        7 weeks ago         385.5 MB
    23  
    24  # See also
    25  **docker-image-save(1)** to save one or more images to a tar archive (streamed to STDOUT by default).