From 3d3bd5770cc52962f7bd9377a11c9ac772e05b67 Mon Sep 17 00:00:00 2001 From: babybuttons Date: Fri, 26 Oct 2018 21:37:15 -0700 Subject: [PATCH] Fix: fixed typo "every where" to "everywhere" (#20313) --- guide/english/docker/docker-compose/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/english/docker/docker-compose/index.md b/guide/english/docker/docker-compose/index.md index 3609381a82..134d09e20c 100644 --- a/guide/english/docker/docker-compose/index.md +++ b/guide/english/docker/docker-compose/index.md @@ -9,7 +9,7 @@ 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 every where. +1)create a Dockerfile which defines the image and can be producible everywhere. ``` ``` 2)create a docker-compose yml file to run the services @@ -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