With apologies (it wasn't clear from the contributing guidelines how this project feels about PRs for one or two word doc fixes).
Signed-off-by: Erik M. Bray <erik.m.bray@gmail.com>
| ... | ... |
@@ -19,7 +19,7 @@ Client** to control the virtualized Docker Engine to build, run, and manage |
| 19 | 19 |
Docker containers. |
| 20 | 20 |
|
| 21 | 21 |
To make this process easier, we've designed a helper application called |
| 22 |
-[Boot2Docker](https://github.com/boot2docker/boot2docker) creates a Linux virtual |
|
| 22 |
+[Boot2Docker](https://github.com/boot2docker/boot2docker) which creates a Linux virtual |
|
| 23 | 23 |
machine on Windows to run Docker on a Linux operating system. |
| 24 | 24 |
|
| 25 | 25 |
Although you will be using Windows Docker client, the docker engine hosting the |
| ... | ... |
@@ -87,13 +87,14 @@ to your console window and you are ready to run docker commands such as |
| 87 | 87 |
|
| 88 | 88 |
## Using Docker from PowerShell |
| 89 | 89 |
|
| 90 |
-Launch a PowerShell window, then you need to add `ssh.exe` to your PATH: |
|
| 90 |
+Launch a PowerShell window, then add `ssh.exe` to your PATH: |
|
| 91 | 91 |
|
| 92 | 92 |
$Env:Path = "${Env:Path};c:\Program Files (x86)\Git\bin"
|
| 93 | 93 |
|
| 94 |
-and after running `boot2docker start` command it will print PowerShell commands |
|
| 95 |
-to set the environment variables to connect Docker running inside VM. Run these |
|
| 96 |
-commands and you are ready to run docker commands such as `docker ps`: |
|
| 94 |
+and after running the `boot2docker start` command it will print PowerShell |
|
| 95 |
+commands to set the environment variables to connect to the Docker daemon |
|
| 96 |
+running inside the VM. Run these commands and you are ready to run docker |
|
| 97 |
+commands such as `docker ps`: |
|
| 97 | 98 |
|
| 98 | 99 |
 |
| 99 | 100 |
|