Github user spmallette commented on a diff in the pull request:
https://github.com/apache/tinkerpop/pull/802#discussion_r171379911
--- Diff: docs/src/reference/gremlin-applications.asciidoc ---
@@ -1830,6 +1862,63 @@ $ curl -X POST -d "{\"gremlin\":\"divideIt(8, 2)\"}"
"http://localhost:8182"
In the above REST-based requests, the bindings contain a special parameter
that tells the `ScriptEngine` cache to
immediately forget the script after execution. In this way, the function
does not end up being globally available.
+[[gremlin-server-docker-image]]
+=== Docker Image
+The Gremlin Server can also be started as a
link:https://hub.docker.com/r/tinkerpop/gremlin-server/[Docker image]:
+
+[source,text]
+----
+$ docker run tinkerpop/gremlin-server:x.y.z
+[INFO] GremlinServer -
+ \,,,/
+ (o o)
+-----oOOo-(3)-oOOo-----
+
+[INFO] GremlinServer - Configuring Gremlin Server from
conf/gremlin-server.yaml
+[INFO] MetricManager - Configured Metrics ConsoleReporter configured with
report interval=180000ms
--- End diff --
I suggest you elide some of the log output here....less to maintain should
the output ever change. maybe "..." everything starting here down to (but not
including):
```text
[INFO] GremlinServer$1 - Gremlin Server configured with worker thread pool
of 1, gremlin pool of 4 and boss thread pool of 1.
```
---