From 56ec08b1a67b9eb40409d379330f5b355743b3ce Mon Sep 17 00:00:00 2001 From: Robert Kielty <208059+RobertKielty@users.noreply.github.com> Date: Tue, 10 Apr 2018 03:10:33 +0100 Subject: [PATCH] Two minor grammar fixes, one clarification (#6406) --- compose/wordpress.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compose/wordpress.md b/compose/wordpress.md index d3676f5023..dcbe768ba9 100644 --- a/compose/wordpress.md +++ b/compose/wordpress.md @@ -6,7 +6,7 @@ title: "Quickstart: Compose and WordPress" You can use Docker Compose to easily run WordPress in an isolated environment built with Docker containers. This quick-start guide demonstrates how to use -Compose to set up and run WordPress. Before starting, install +Compose to set up and run WordPress. Before starting, make sure you have [Compose installed](/compose/install.md). ### Define the project @@ -23,7 +23,7 @@ Compose to set up and run WordPress. Before starting, install >**Tip**: You can use either a `.yml` or `.yaml` extension for this file. They both work. -2. Change directories into your project directory. +2. Change into your project directory. For example, if you named your directory `my_wordpress`: @@ -76,7 +76,7 @@ Compose to set up and run WordPress. Before starting, install Now, run `docker-compose up -d` from your project directory. This runs [docker-compose up](/compose/reference/up/) in detached mode, pulls -the needed images, and starts the wordpress and database containers, as shown in +the needed Docker images, and starts the wordpress and database containers, as shown in the example below. ```