summaryrefslogtreecommitdiff
path: root/devdocs/docker/engine%2Freference%2Fcommandline%2Fload%2Findex.html
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-08-14 22:58:58 -0500
committerCraig Jennings <c@cjennings.net>2025-08-14 22:58:58 -0500
commit82ba818ff456bcd6d56a06226e3f27e98fbb55c3 (patch)
tree158cfc17b2f644a10f063cb546752cfaae12c97f /devdocs/docker/engine%2Freference%2Fcommandline%2Fload%2Findex.html
parent9278ddd4ea1a8b1a4c1edaa8894516e3f48d245b (diff)
downloaddotemacs-82ba818ff456bcd6d56a06226e3f27e98fbb55c3.tar.gz
dotemacs-82ba818ff456bcd6d56a06226e3f27e98fbb55c3.zip
removing all downloaded devdocs files
Diffstat (limited to 'devdocs/docker/engine%2Freference%2Fcommandline%2Fload%2Findex.html')
-rw-r--r--devdocs/docker/engine%2Freference%2Fcommandline%2Fload%2Findex.html36
1 files changed, 0 insertions, 36 deletions
diff --git a/devdocs/docker/engine%2Freference%2Fcommandline%2Fload%2Findex.html b/devdocs/docker/engine%2Freference%2Fcommandline%2Fload%2Findex.html
deleted file mode 100644
index ab5d832b..00000000
--- a/devdocs/docker/engine%2Freference%2Fcommandline%2Fload%2Findex.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<h1>docker load</h1> <p><br></p> <p>Load an image from a tar archive or STDIN</p> <h2 id="usage">Usage</h2> <div class="highlight"><pre class="highlight" data-language="">$ docker load [OPTIONS]
-</pre></div> <p>Refer to the <a href="#options">options section</a> for an overview of available <a href="#options"><code class="language-plaintext highlighter-rouge">OPTIONS</code></a> for this command.</p> <h2 id="description">Description</h2> <p name="extended-description">Load an image or repository from a tar archive (even if compressed with gzip, bzip2, or xz) from a file or STDIN. It restores both images and tags.</p> <p>For example uses of this command, refer to the <a href="#examples">examples section</a> below.</p> <h2 id="options">Options</h2> <table> <thead> <tr> <td>Name, shorthand</td> <td>Default</td> <td>Description</td> </tr> </thead> <tbody> <tr> <td>
-<code class="language-plaintext highlighter-rouge">--input</code> , <code class="language-plaintext highlighter-rouge">-i</code>
-</td> <td></td> <td>Read from tar archive file, instead of STDIN</td> </tr> <tr> <td>
-<code class="language-plaintext highlighter-rouge">--quiet</code> , <code class="language-plaintext highlighter-rouge">-q</code>
-</td> <td></td> <td>Suppress the load output</td> </tr> </tbody> </table> <h2 id="examples">Examples</h2> <div class="highlight"><pre class="highlight" data-language="">$ docker image ls
-
-REPOSITORY TAG IMAGE ID CREATED SIZE
-
-$ docker load &lt; busybox.tar.gz
-
-Loaded image: busybox:latest
-$ docker images
-REPOSITORY TAG IMAGE ID CREATED SIZE
-busybox latest 769b9341d937 7 weeks ago 2.489 MB
-
-$ docker load --input fedora.tar
-
-Loaded image: fedora:rawhide
-
-Loaded image: fedora:20
-
-$ docker images
-
-REPOSITORY TAG IMAGE ID CREATED SIZE
-busybox latest 769b9341d937 7 weeks ago 2.489 MB
-fedora rawhide 0d20aec6529d 7 weeks ago 387 MB
-fedora 20 58394af37342 7 weeks ago 385.5 MB
-fedora heisenbug 58394af37342 7 weeks ago 385.5 MB
-fedora latest 58394af37342 7 weeks ago 385.5 MB
-</pre></div> <div class="_attribution">
- <p class="_attribution-p">
- &copy; 2019 Docker, Inc.<br>Licensed under the Apache License, Version 2.0.<br>Docker and the Docker logo are trademarks or registered trademarks of Docker, Inc. in the United States and/or other countries.<br>Docker, Inc. and other parties may also have trademark rights in other terms used herein.<br>
- <a href="https://docs.docker.com/engine/reference/commandline/load/" class="_attribution-link">https://docs.docker.com/engine/reference/commandline/load/</a>
- </p>
-</div>