Frederic G. MARAND 6 years ago
parent
commit
905142bb4b
1 changed files with 22 additions and 18 deletions
  1. 22 18
      README.md

+ 22 - 18
README.md

@@ -1,33 +1,37 @@
 From https://www.codeschool.com/screencasts/build-a-node-app-with-postgres-and-docker
 
 * Run nginx 
-  * in foreground
-    * `docker run -p 81:80 --name web nginx`
-  * in foreground and removing it when stopped
-    * `docker run -p 81:80 --name web --rm nginx`
-  * in background
-    * `docker run -p 81:80 --name web -d nginx`
-  * foreground, mounting the nginx/html directory:
+    * in foreground
+        * `docker run -p 81:80 --name web nginx`
+    * in foreground and removing it when stopped
+        * `docker run -p 81:80 --name web --rm nginx`
+    * in background
+        * `docker run -p 81:80 --name web -d nginx`
+    * foreground, mounting the nginx/html directory:
 
-        docker run --rm \
-          -p 81:80  \
-          --name web \
-          --mount type=bind,source=$PWD/nginx/html,target=/usr/share/nginx/html \
-          nginx
+            docker run --rm \
+            -p 81:80  \
+            --name web \
+            --mount type=bind,source=$PWD/nginx/html,target=/usr/share/nginx/html \
+            nginx
+          
 * Enter the container:
 
-      docker exec -it web /bin/bash
+        docker exec -it web /bin/bash
+      
 * Build a local image from the `Dockerfile`
 
-      docker build -t osinet/nginx:latest .
+        docker build -t osinet/nginx:latest .
+      
 * Run the newly built image:
 
-      docker run --rm \
+        docker run --rm \
         -p 81:80 \
         --name web \
         --mount type=bind,source=$PWD/nginx/html,target=/usr/share/nginx/html \ 
         osinet/nginx
+        
 * List images
-  * All except intermediates: `docker images`
-  * All including intermediates: `docker images -a`
-  * Images with this name: `docker images osinet/nginx`
+    * All except intermediates: `docker images`
+    * All including intermediates: `docker images -a`
+    * Images with this name: `docker images osinet/nginx`