docker-image: add page (#5684)

manned-org
Starbeamrainbowlabs 2021-04-12 18:55:29 +01:00 committed by GitHub
parent fd625e15e1
commit c571fa7ce2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
# docker image
> Manage Docker images.
> See also `docker build`, `docker import`, and `docker pull`.
> More information: <https://docs.docker.com/engine/reference/commandline/image/>.
- List local Docker images:
`docker image ls`
- Delete unused local Docker images:
`docker image prune`
- Delete all unused images (not just those without a tag):
`docker image prune --all`
- Show the history of a local Docker image:
`docker image history {{image}}`