Files
tldr/pages.pt_BR/common/docker-pull.md
Isaac Vicente 82d851a2ba docker*, x11docker, kdocker: add pt_BR translation (#10507)
* 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>
2023-09-20 10:04:40 +08:00

610 B

docker pull

Baixar imagens do Docker de um registro. Mais informações: https://docs.docker.com/engine/reference/commandline/pull/.

  • Baixar uma imagem específica do Docker:

docker pull {{imagem}}:{{tag}}

  • Baixar uma imagem específica do Docker no modo silencioso:

docker pull --quiet {{imagem}}:{{tag}}

  • Baixar todas as tags de uma imagem específica do Docker:

docker pull --all-tags {{imagem}}

  • Baixar imagens do Docker para uma plataforma específica, por exemplo, linux/amd64:

docker pull --platform {{linux/amd64}} {{imagem}}:{{tag}}

  • Exibir ajuda:

docker pull --help