Update cheatsheets

This commit is contained in:
ivuorinen
2025-12-18 00:18:39 +00:00
parent bda9e5a061
commit 0df0c010e8
101 changed files with 941 additions and 154 deletions

21
tldr/docker-image-load Normal file
View File

@@ -0,0 +1,21 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# docker image load
> Load Docker images from files or `stdin`.
> More information: <https://docs.docker.com/reference/cli/docker/image/load/>.
- Load a Docker image from `stdin`:
`docker < {{path/to/image_file.tar}} {{[load|image load]}}`
- Load a Docker image from a specific file:
`docker {{[load|image load]}} {{[-i|--input]}} {{path/to/image_file.tar}}`
- Load a Docker image from a specific file in quiet mode:
`docker {{[load|image load]}} {{[-q|--quiet]}} {{[-i|--input]}} {{path/to/image_file.tar}}`