Fix docker port mapping in README.md
diff --git a/README.md b/README.md
index 6f69a3f..0941083 100644
--- a/README.md
+++ b/README.md
@@ -53,13 +53,13 @@
 The Docker image only needs the port 8080 to be exposed
 
 ```
-$ docker run --rm -p 8080 apache/sling:snapshot
+$ docker run --rm -p 8080:8080 apache/sling:snapshot
 ```
 
 By default the image launches the `oak_tar` aggregate, which uses local persistence. The aggregate to launch can be selected by passing an additional argument to the image, e.g.:
 
 ```
-$ docker run --rm -p 8080 apache/sling:snapshot oak_mongo
+$ docker run --rm -p 8080:8080 apache/sling:snapshot oak_mongo
 ```
 
 Currently only the `oak_tar` and `oak_mongo` aggregates are supported.
@@ -68,7 +68,7 @@
 
 ```
 $ docker volume create sling-launcher
-$ docker run --rm -p 8080 -v sling-launcher:/opt/sling/launcher apache/sling:snapshot
+$ docker run --rm -p 8080:8080 -v sling-launcher:/opt/sling/launcher apache/sling:snapshot
 ```
 
 The [docker/](docker/) directory contains sample files related to container-based development.
@@ -79,7 +79,7 @@
 
 ```
 $ mvn clean package -Ddocker.skip=false -Ddocker.label=local
-$ docker run --rm -p 8080 apache/sling:local
+$ docker run --rm -p 8080:8080 apache/sling:local
 ```
 
 ## Extending the Sling Starter