mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-01 07:55:24 +02:00
docker-load: add page (#8672)
This commit is contained in:
parent
b065fca695
commit
8e2521fcae
1 changed files with 16 additions and 0 deletions
16
pages/common/docker-load.md
Normal file
16
pages/common/docker-load.md
Normal file
|
@ -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}}`
|
Loading…
Add table
Reference in a new issue