Browse Source

Merge pull request #992 from docker-flink/master

[flink] fix typo
Tianon Gravi 8 years ago
parent
commit
2c02bbba16
1 changed files with 1 additions and 1 deletions
  1. 1 1
      flink/content.md

+ 1 - 1
flink/content.md

@@ -31,7 +31,7 @@ $ docker run --rm -t flink flink run -m <jobmanager:port> -c <your_class> <your_
 You can run a JobManager (master).
 
 ```console
-$ docker run --name flink_jobmanager -d -t flink taskmanager
+$ docker run --name flink_jobmanager -d -t flink jobmanager
 ```
 
 You can also run a TaskManager (worker). Notice that workers need to register with the JobManager directly or via ZooKeeper so the master starts to send them tasks to execute.