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>
This commit is contained in:
32
pages.pt_BR/common/docker-swarm.md
Normal file
32
pages.pt_BR/common/docker-swarm.md
Normal file
@@ -0,0 +1,32 @@
|
||||
# docker swarm
|
||||
|
||||
> Uma ferramenta de orquestração de contêineres.
|
||||
> Mais informações: <https://docs.docker.com/engine/swarm/>.
|
||||
|
||||
- Inicializar um cluster do Swarm:
|
||||
|
||||
`docker swarm init`
|
||||
|
||||
- Exibir o token para ingressar como gerenciador ou trabalhador:
|
||||
|
||||
`docker swarm join-token {{worker|manager}}`
|
||||
|
||||
- Ingressar um novo nó ao cluster:
|
||||
|
||||
`docker swarm join --token {{token}} {{url_do_nó_gerenciador:2377}}`
|
||||
|
||||
- Remover um trabalhador do Swarm (executado dentro do nó trabalhador):
|
||||
|
||||
`docker swarm leave`
|
||||
|
||||
- Exibir o certificado CA atual no formato PEM:
|
||||
|
||||
`docker swarm ca`
|
||||
|
||||
- Rotacionar o certificado CA atual e exibir o novo certificado:
|
||||
|
||||
`docker swarm ca --rotate`
|
||||
|
||||
- Alterar o período de validade dos certificados dos nós:
|
||||
|
||||
`docker swarm update --cert-expiry {{horas}}h{{minutos}}m{{segundos}}s`
|
Reference in New Issue
Block a user