docker-*: add French translation (#8529)

This commit is contained in:
Titouan-joseph Cicorella
2022-09-29 14:54:38 +02:00
committed by GitHub
parent b9db027a05
commit c0ff68e3cf
23 changed files with 597 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
# docker swarm
> Outil d'orchestration de conteneurs.
> Plus d'informations : <https://docs.docker.com/engine/swarm/>.
- Initialiser un cluster swarm :
`docker swarm init`
- Afficher le jeton pour rejoindre un cluster swarm en tant que nœud manager ou worker :
`docker swarm join-token {{worker|manager}}`
- Rejoindre un nouveau nœud au cluster :
`docker swarm join --token {{jeton}} {{url_du_manager:2377}}`
- Supprimer un worker du cluster (à exécuter dans le nœud worker) :
`docker swarm leave`
- Afficher le certificat CA actuel au format PEM :
`docker swarm ca`
- Changer la certificat CA actuel et afficher le nouveau certificat :
`docker swarm ca --rotate`
- Changer la période de validité des certificats des nœuds :
`docker swarm update --cert-expiry {{heures}}h{{minutes}}m{{secondes}}s`