Browse code

Update usingdocker.md

Minor rewording and removal of unnecessary apostrophe.

averagehuman authored on 2014/08/23 01:48:26
Showing 1 changed files
... ...
@@ -156,9 +156,9 @@ In this case Docker has exposed port 5000 (the default Python Flask
156 156
 port) on port 49155.
157 157
 
158 158
 Network port bindings are very configurable in Docker. In our last
159
-example the `-P` flag is a shortcut for `-p 5000` that makes port 5000
159
+example the `-P` flag is a shortcut for `-p 5000` that maps port 5000
160 160
 inside the container to a high port (from the range 49000 to 49900) on
161
-the local Docker host. We can also bind Docker container's to specific
161
+the local Docker host. We can also bind Docker containers to specific
162 162
 ports using the `-p` flag, for example:
163 163
 
164 164
     $ sudo docker run -d -p 5000:5000 training/webapp python app.py