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`.
This commit is contained in:
Adrian Smith 2018-03-09 12:19:39 +01:00
parent 11fa490309
commit 2b8f2ff2b1
1 changed files with 1 additions and 1 deletions

View File

@ -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: