diff options
author | Michael Chen <flamingdescent@gmail.com> | 2021-02-25 13:09:26 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-25 13:09:26 -0500 |
commit | fcc37b081b66b9618673a8c7b18d5f1a8bae7736 (patch) | |
tree | e98c1b25d7d50fc8f3ad57bee4a61516ef2d1ce9 /docker.html.markdown | |
parent | cb434152b245d08ef5ecc74f363dd7538e4ee13f (diff) |
Add syntax highlighting, fix typos
Diffstat (limited to 'docker.html.markdown')
-rw-r--r-- | docker.html.markdown | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/docker.html.markdown b/docker.html.markdown index 24f85247..75f86ec9 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
@@ -143,4 +144,4 @@ docker ps -a :: nifty_goldwasser
docker rm nifty_goldwasser
-```
\ No newline at end of file +```
|