mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-23 11:24:14 +02:00

* btrfs-restore: Add pt_BR translation * btrfs-version: Add pt_BR translation * btrfs-scrub: Add pt_BR translation * mkfs.btrfs: Add pt_BR translation * fix: remove trailing whitespaces and surround example by new line * Update pages.pt_BR/linux/btrfs-restore.md Co-authored-by: Waldir Pimenta <waldyrious@gmail.com> * Update pages.pt_BR/linux/btrfs-restore.md Co-authored-by: Waldir Pimenta <waldyrious@gmail.com> * Update pages.pt_BR/linux/btrfs-restore.md Co-authored-by: Waldir Pimenta <waldyrious@gmail.com> * fix: put beginning verbs in infinitive * docker*, x11docker, kdocker: add pt_BR translation --------- Co-authored-by: Waldir Pimenta <waldyrious@gmail.com>
21 lines
514 B
Markdown
21 lines
514 B
Markdown
# docker image
|
|
|
|
> Gerenciar imagens do Docker.
|
|
> Veja também `docker build`, `docker import` e `docker pull`.
|
|
> Mais informações: <https://docs.docker.com/engine/reference/commandline/image/>.
|
|
|
|
- Listar imagens Docker locais:
|
|
|
|
`docker image ls`
|
|
|
|
- Excluir imagens Docker locais não utilizadas:
|
|
|
|
`docker image prune`
|
|
|
|
- Excluir todas as imagens não utilizadas (não apenas aquelas sem uma tag):
|
|
|
|
`docker image prune --all`
|
|
|
|
- Mostrar o histórico de uma imagem Docker local:
|
|
|
|
`docker image history {{imagem}}`
|