From 97d60dbd9ec4f86bebad42d902f9f5a617358f2f Mon Sep 17 00:00:00 2001 From: Henrik <41202481+Mewgler@users.noreply.github.com> Date: Tue, 20 Nov 2018 19:57:53 +0100 Subject: [PATCH] Update index.md (#22142) Corrected some spelling errors --- guide/english/docker/docker-compose/index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/guide/english/docker/docker-compose/index.md b/guide/english/docker/docker-compose/index.md index a60eac0bd1..9e0e30aa6c 100644 --- a/guide/english/docker/docker-compose/index.md +++ b/guide/english/docker/docker-compose/index.md @@ -9,13 +9,13 @@ Docker-Compose is a tool for defining and running multi-container Docker applica The steps to use docker-compose are ``` -1)create a Dockerfile which defines the image and can be producible everywhere. +1)Create a Dockerfile which defines the image and can be producible everywhere ``` ``` -2)create a docker-compose yml file to run the services +2)Create a docker-compose.yml file to run the services ``` ``` -3)use docker-compose up to start the sevices specified in docker-compose.yml file +3)Use docker-compose up to start the sevices specified in the docker-compose.yml file ``` #### Basic commands in docker-compose @@ -32,7 +32,7 @@ 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: first time we run docker containers build will happen automatically) ``` docker-compose -f docker-compose.yml --build -d