System Grab Bag

View all TLDR pages from common (or from all pages)

docker load

Load Docker images from files or stdin. More information: https://docs.docker.com/engine/reference/commandline/load/.
  • Load a Docker image from stdin:
    docker load < {{path/to/image_file.tar}}
  • Load a Docker image from a specific file:
    docker load --input {{path/to/image_file.tar}}
  • Load a Docker image from a specific file in quiet mode:
    docker load --quiet --input {{path/to/image_file.tar}}

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.