From 2b8f2ff2b1906cb9987d488ab369789d0654ce7a Mon Sep 17 00:00:00 2001 From: Adrian Smith Date: Fri, 9 Mar 2018 12:19:39 +0100 Subject: [PATCH] Correct wrong parameter name in Jetty docs To run Jetty with particular modules, use the `--module` option; the previous doc said `--modules`. The Jetty documentation https://www.eclipse.org/jetty/documentation/9.3.x/startup.html references the `--module` option many times, but never `--modules`. --- jetty/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jetty/content.md b/jetty/content.md index 6f455fa07..ea1d7605b 100644 --- a/jetty/content.md +++ b/jetty/content.md @@ -47,7 +47,7 @@ $ docker run -d %%IMAGE%% --list-config Configuration such as parameters and additional modules may also be passed in via the command line. For example: ```console -$ docker run -d %%IMAGE%% --modules=jmx jetty.threadPool.maxThreads=500 +$ docker run -d %%IMAGE%% --module=jmx jetty.threadPool.maxThreads=500 ``` To update the server configuration in a derived Docker image, the `Dockerfile` may enable additional modules with `RUN` commands like: