From 3c12dffbf4f0d06ca2149cb2524ad40154eafe26 Mon Sep 17 00:00:00 2001 From: Mike Dillon Date: Tue, 11 Aug 2015 19:14:26 -0700 Subject: [PATCH] Update wording of simple run examples Demonstrate a port mapping for port 8443 to expose HTTPS. --- jetty/content.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jetty/content.md b/jetty/content.md index 31b8703b0..c9136ba5b 100644 --- a/jetty/content.md +++ b/jetty/content.md @@ -8,19 +8,19 @@ Jetty is a pure Java-based HTTP (Web) server and Java Servlet container. While W # How to use this image. -Run the default Jetty server: +To run the default Jetty server in the background, use the following command: ```console $ docker run -d %%REPO%% ``` -You can test it by visiting `http://container-ip:8080` in a browser or, if you need access outside the host, on port 8888: +You can test it by visiting `http://container-ip:8080` or `https://container-ip:8443/` in a browser. To expose your Jetty server to outside requests, use a port mapping as follows: ```console $ docker run -d -p 8888:8080 %%REPO%% ``` -You can then go to `http://localhost:8888` or `http://host-ip:8888` in a browser. +This will map port 8080 inside the container as port 80 on the host and container port 8443 as host port 443. You can then go to `http://host-ip` or `https://host-ip` in a browser. The default Jetty environment in the image is: