1
0
Bifurcation 0
miroir de https://github.com/PAPAMICA/Wiki-Tech.io.git synchronisé 2024-11-27 19:50:37 +01:00

docs: update Docker/Commandes

Cette révision appartient à :
Mickael Asseline 2021-05-09 09:35:54 +00:00 révisé par Mickael Asseline
Parent a81919a1cc
révision d90b60b842

Voir le fichier

@ -2,7 +2,7 @@
title: Commandes utiles
description: Petit mémo avec toutes les commandes utilisées au quotidien avec Docker.
published: true
date: 2021-05-09T08:27:35.142Z
date: 2021-05-09T09:35:53.505Z
tags:
editor: ckeditor
dateCreated: 2021-05-01T18:31:53.549Z
@ -247,3 +247,39 @@ dateCreated: 2021-05-01T18:31:53.549Z
<p>&nbsp;</p>
<hr>
<h1>Docker-Compose</h1>
<figure class="table">
<table>
<thead>
<tr>
<th>Commande</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>docker-compose up</code></td>
<td>Lancer la stack</td>
</tr>
<tr>
<td><code>docker-compose up -d</code></td>
<td>Lancer la stack en daemon</td>
</tr>
<tr>
<td><code>docker-compose pull</code></td>
<td>Télécharger les images de la stack</td>
</tr>
<tr>
<td><code>docker-compose stop</code></td>
<td>Arrêter les containers</td>
</tr>
<tr>
<td><code>docker-compose down</code></td>
<td>Supprimer les containers</td>
</tr>
<tr>
<td><code>docker-compose logs</code></td>
<td>Afficher les logs des containers</td>
</tr>
</tbody>
</table>
</figure>