Browse Source

docker-load: add page (#8672)

Axel Navarro 2 năm trước cách đây
mục cha
commit
8e2521fcae
1 tập tin đã thay đổi với 16 bổ sung0 xóa
  1. 16 0
      pages/common/docker-load.md

+ 16 - 0
pages/common/docker-load.md

@@ -0,0 +1,16 @@
+# 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}}`