diff options
author | Max Schumacher <maximilianbschumacher@gmail.com> | 2021-03-21 15:30:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-21 15:30:12 +0100 |
commit | b842e264ac17bf5da8ea5938eba7e38037c01cde (patch) | |
tree | b7aec7f3fc3114eb2404d15a1a5dd9c96123468d | |
parent | 0b1ddaad046f9b4001f62545b57c67fc10e9c059 (diff) | |
parent | 39e46cb7ee2933bbd87fb5fbc3410efde2f967aa (diff) |
Merge pull request #4122 from ML-Chen/patch-5
[docker/en] Add syntax highlighting, fix typos
-rw-r--r-- | docker.html.markdown | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/docker.html.markdown b/docker.html.markdown index 24f85247..1dad267a 100644 --- a/docker.html.markdown +++ b/docker.html.markdown @@ -3,9 +3,10 @@ language: docker filename: docker.bat
contributors:
- ["Ruslan López", "http://javapro.org/"]
+ - ["Michael Chen", "https://github.com/ML-Chen"]
---
-```
+```bat
:: download, install and run hello-world image
docker run hello-world
@@ -37,12 +38,12 @@ docker run hello-world :: For more examples and ideas, visit:
:: https://docs.docker.com/get-started/
-:: now lets see currently running images
+:: now let's see currently running images
docker ps
:: CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS
:: NAMES
-:: lets see the images we have ran previously
+:: let's see the images we have ran previously
docker ps -a
:: CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS
@@ -54,7 +55,7 @@ docker ps -a :: let's remove our previously generated image
docker rm happy_poincare
-:: lets test if it was really deleted
+:: let's test if it was really deleted
docker ps -a
:: CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS
:: NAMES
@@ -89,7 +90,7 @@ docker ps -a :: test_container
:: as you can see the name is now what we have specified
-:: retireve logs from a named container
+:: retrieve logs from a named container
docker logs test_container
:: Hello from Docker!
:: This message shows that your installation appears to be working correctly.
@@ -143,4 +144,4 @@ docker ps -a :: nifty_goldwasser
docker rm nifty_goldwasser
-```
\ No newline at end of file +```
|