Signed-off-by: ayoshitake <airandfingers@gmail.com>
| ... | ... |
@@ -83,9 +83,8 @@ To see usage for a specific command, specify the command with the `--help` flag: |
| 83 | 83 |
|
| 84 | 84 |
So now we've learnt a bit more about the `docker` client let's move onto |
| 85 | 85 |
the important stuff: running more containers. So far none of the |
| 86 |
-containers we've run did anything particularly useful though. So let's |
|
| 87 |
-build on that experience by running an example web application in |
|
| 88 |
-Docker. |
|
| 86 |
+containers we've run did anything particularly useful, so let's |
|
| 87 |
+change that by running an example web application in Docker. |
|
| 89 | 88 |
|
| 90 | 89 |
For our web application we're going to run a Python Flask application. |
| 91 | 90 |
Let's start with a `docker run` command. |
| ... | ... |
@@ -303,7 +302,7 @@ And now our container is stopped and deleted. |
| 303 | 303 |
# Next steps |
| 304 | 304 |
|
| 305 | 305 |
Until now we've only used images that we've downloaded from |
| 306 |
-[Docker Hub](https://hub.docker.com) now let's get introduced to |
|
| 306 |
+[Docker Hub](https://hub.docker.com). Next, let's get introduced to |
|
| 307 | 307 |
building and sharing our own images. |
| 308 | 308 |
|
| 309 | 309 |
Go to [Working with Docker Images](/userguide/dockerimages). |