mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

* pages.pt*: fix verb tenses * pages.pt*: fix all pt_PT verb tenses in the start and more pt_BR verb tenses * pages.pt_BR: fix more verb tenses * pages.pt_BR: fix more verb tenses * pages.pt_BR: fix more verb tenses * pages.pt*: fix more verb tenses * review PR --------- Co-authored-by: Isaac Vicente <isaacvicentsocial@gmail.com> Co-authored-by: Isaac Vicente <contatoisaacvicente@gmail.com>
605 B
605 B
docker pull
Baixar imagens do Docker de um registro. Mais informações: https://docs.docker.com/engine/reference/commandline/pull/.
- Baixa uma imagem específica do Docker:
docker pull {{imagem}}:{{tag}}
- Baixa uma imagem específica do Docker no modo silencioso:
docker pull --quiet {{imagem}}:{{tag}}
- Baixa todas as tags de uma imagem específica do Docker:
docker pull --all-tags {{imagem}}
- Baixa imagens do Docker para uma plataforma específica, por exemplo, linux/amd64:
docker pull --platform {{linux/amd64}} {{imagem}}:{{tag}}
- Exibe ajuda:
docker pull --help