From 2129b299d995cba149ce177622baeaf2fa44f96f Mon Sep 17 00:00:00 2001 From: Ayush Baweja <44344063+Analogues@users.noreply.github.com> Date: Fri, 21 Dec 2018 07:54:15 +0530 Subject: [PATCH] Corrected inconsistencies in headings (#25746) --- guide/english/docker/docker-compose/index.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/guide/english/docker/docker-compose/index.md b/guide/english/docker/docker-compose/index.md index 9e0e30aa6c..fe480fbe87 100644 --- a/guide/english/docker/docker-compose/index.md +++ b/guide/english/docker/docker-compose/index.md @@ -32,13 +32,14 @@ docker-compose -f docker-compose.yml up docker-compose -f docker-compose.yml up -d ``` -* Command to run containers after building the images again (note: first time we run docker containers build will happen automatically) + +* Command to run containers after building the images again (Note: docker containers automatically builds at the first time) ``` docker-compose -f docker-compose.yml --build -d ``` -* Command to stop containers when we run in detached mode +* Command to stop containers when running in detached mode ``` docker-compose -f docker-compose.yml down