From cebd55296f65820308032fc766043151c1db635c Mon Sep 17 00:00:00 2001 From: Manish Giri Date: Thu, 18 Oct 2018 03:03:00 -0400 Subject: [PATCH] fix(guide): Clean up "first-docker-image" (#19684) --- .../containers/run-your-first-docker-image/index.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/guide/english/containers/run-your-first-docker-image/index.md b/guide/english/containers/run-your-first-docker-image/index.md index 0f8fbd5fec..390d2911d4 100644 --- a/guide/english/containers/run-your-first-docker-image/index.md +++ b/guide/english/containers/run-your-first-docker-image/index.md @@ -3,7 +3,7 @@ title: Run Your First Docker Image --- ## Run Your First Docker Image -After you are done setting up your computer and installig docker, you can simply test your Docker by running command: +After you are done setting up your computer and installing docker, you can test your Docker installation by running the following command: ```shell $ docker run hello-world @@ -17,13 +17,13 @@ Hello from Docker! This message shows that your installation appears to be working correctly. ... ``` -If you have no hello-world image locally Docker will automatically download it to your machine. -You can list image that was downloaded or created to your machine by running command: +If you have no `hello-world` image locally, Docker will automatically download it to your machine. +You can list image that was downloaded or created to your machine by running the command: ```shell $ docker image ls ``` -More Information: +#### More Information: -test Docker installation documentation. +Docker installation documentation.