rmetzger commented on a change in pull request #14346:
URL: https://github.com/apache/flink/pull/14346#discussion_r542232468



##########
File path: docs/deployment/resource-providers/standalone/docker.md
##########
@@ -112,10 +72,44 @@ docker run \
     flink:{% if site.is_stable 
%}{{site.version}}-scala{{site.scala_version_suffix}}{% else %}latest{% endif 
%} taskmanager
 ```
 
+The web interface is now available at [localhost:8081](http://localhost:8081).
 
-### Start a Job Cluster
 
-A *Flink Job cluster* is a dedicated cluster which runs a single job.
+Submission of a job is now possible like this (assuming you have a local 
distribution of Flink available)
+
+```sh
+./bin/flink run ./examples/streaming/TopSpeedWindowing.jar
+```
+
+To shut down the cluster, either terminate (e.g. with CTRL-C) the JobManager 
and TaskManager processes, or use `docker ps` to identify and `docker stop` to 
terminate the containers.
+
+## Deployment Modes
+
+The Flink image contains a regular Flink distribution with its default 
configuration and a standard entry point script.
+You can run its entry point in the following modes:
+* [JobManager]({% link concepts/glossary.md %}#flink-jobmanager) for [a 
Session cluster](#starting-a-session-cluster-on-docker)
+* [JobManager]({% link concepts/glossary.md %}#flink-jobmanager) for [a 
Application cluster](#application-mode-on-docker)
+* [TaskManager]({% link concepts/glossary.md %}#flink-taskmanager) for any 
cluster

Review comment:
       I think it doesn't hurt, and it's more work removing the references than 
keeping them, so 🤷‍♂️ 




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to