Issue #116 Add JNLP port to the instructions on starting the container
diff --git a/README.md b/README.md
index eed7542..48ab63b 100644
--- a/README.md
+++ b/README.md
@@ -12,14 +12,14 @@
# Usage
```
-docker run -p 8080:8080 jenkins
+docker run -p 8080:8080 -p 50000:50000 jenkins
```
This will store the workspace in /var/jenkins_home. All Jenkins data lives in there - including plugins and configuration.
You will probably want to make that a persistent volume (recommended):
```
-docker run -p 8080:8080 -v /your/home:/var/jenkins_home jenkins
+docker run -p 8080:8080 -p 50000:50000 -v /your/home:/var/jenkins_home jenkins
```
This will store the jenkins data in /your/home on the host.
@@ -29,7 +29,7 @@
You can also use a volume container:
```
-docker run --name myjenkins -p 8080:8080 -v /var/jenkins_home jenkins
+docker run --name myjenkins -p 8080:8080 -p 50000:50000 -v /var/jenkins_home jenkins
```
Then myjenkins container has the volume (please do read about docker volume handling to find out more).
@@ -56,7 +56,7 @@
variable for this purpose :
```
-docker run --name myjenkins -p 8080:8080 --env JAVA_OPTS=-Dhudson.footerURL=http://mycompany.com jenkins
+docker run --name myjenkins -p 8080:8080 -p 50000:50000 --env JAVA_OPTS=-Dhudson.footerURL=http://mycompany.com jenkins
```
# Passing Jenkins launcher parameters