Move pages under tldr, lint run.sh, update docs

This commit is contained in:
2024-02-21 13:58:43 +02:00
parent 3d653cc7e6
commit 2c475fa62d
4806 changed files with 36 additions and 35 deletions

33
tldr/docker-images Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# docker images
> Manage Docker images.
> More information: <https://docs.docker.com/engine/reference/commandline/images/>.
- List all Docker images:
`docker images`
- List all Docker images including intermediates:
`docker images --all`
- List the output in quiet mode (only numeric IDs):
`docker images --quiet`
- List all Docker images not used by any container:
`docker images --filter dangling=true`
- List images that contain a substring in their name:
`docker images "{{*name*}}"`
- Sort images by size:
`docker images --format "{{.ID}} {{.Size}} {{.Repository}}:{{.Tag}}" | sort -k 2 -h`