diff --git a/guide/english/docker/docker-compose/index.md b/guide/english/docker/docker-compose/index.md index fe480fbe87..1b36146bd9 100644 --- a/guide/english/docker/docker-compose/index.md +++ b/guide/english/docker/docker-compose/index.md @@ -2,21 +2,17 @@ title: Docker compose --- -## Docker compose +## Docker Compose -Docker-Compose is a tool for defining and running multi-container Docker applications. With Compose, you use a YAML file to configure your application’s services. +Docker Compose is a tool for defining and running multi-container Docker applications. With Compose, you use a YAML file to configure your application's services. -The steps to use docker-compose are +The steps to use docker-compose are: -``` -1)Create a Dockerfile which defines the image and can be producible everywhere -``` -``` -2)Create a docker-compose.yml file to run the services -``` -``` -3)Use docker-compose up to start the sevices specified in the docker-compose.yml file -``` +1. Create a Dockerfile which defines the image and can be producible everywhere. + +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. #### Basic commands in docker-compose