summaryrefslogtreecommitdiff
path: root/docs/sources/userguide/usingdocker.md
diff options
context:
space:
mode:
authorFred Lifton <fred.lifton@docker.com>2014-08-27 09:05:02 -0700
committerFred Lifton <fred.lifton@docker.com>2014-08-27 09:05:02 -0700
commitaba575c7546ba7d2914f0c3b8b3450667b3959ac (patch)
treed0158f0eab4b9710815c1a87e2ef3699e5185205 /docs/sources/userguide/usingdocker.md
parent4b54484843eacf6ce57d2fc16e6aacc70d964041 (diff)
parent7565cb309988345f9ed9daba87052f2bba116033 (diff)
downloaddocker-docs-1.1.tar.gz
Merge pull request #7755 from SvenDowideit/post-1.1.2-docs-update-1docs-1.1
Post 1.1.2 docs update 1
Diffstat (limited to 'docs/sources/userguide/usingdocker.md')
-rw-r--r--docs/sources/userguide/usingdocker.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/sources/userguide/usingdocker.md b/docs/sources/userguide/usingdocker.md
index a882a79c7d..ea13122fd6 100644
--- a/docs/sources/userguide/usingdocker.md
+++ b/docs/sources/userguide/usingdocker.md
@@ -156,9 +156,9 @@ In this case Docker has exposed port 5000 (the default Python Flask
port) on port 49155.
Network port bindings are very configurable in Docker. In our last
-example the `-P` flag is a shortcut for `-p 5000` that makes port 5000
+example the `-P` flag is a shortcut for `-p 5000` that maps port 5000
inside the container to a high port (from the range 49000 to 49900) on
-the local Docker host. We can also bind Docker container's to specific
+the local Docker host. We can also bind Docker containers to specific
ports using the `-p` flag, for example:
$ sudo docker run -d -p 5000:5000 training/webapp python app.py