This is an automated email from the ASF dual-hosted git repository.
tzulitai pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/flink-statefun-playground.git
The following commit(s) were added to refs/heads/dev by this push:
new ec51653 [hotfix] fix docker-compose command
ec51653 is described below
commit ec5165322869dc7f3a173be3fc708a31d1d160d0
Author: Alexander Fedulov <[email protected]>
AuthorDate: Mon Mar 22 21:29:43 2021 +0100
[hotfix] fix docker-compose command
`docker-compose run` is for running services and requires additional
arguments. I assume `docker-compose up` was meant.
This closes #6.
---
java/greeter/README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/java/greeter/README.md b/java/greeter/README.md
index 3e1cec3..bf2c37d 100644
--- a/java/greeter/README.md
+++ b/java/greeter/README.md
@@ -46,7 +46,7 @@ take a few minutes as it also needs to build the function's
Java project.
Afterward the build completes, start running all the services:
```
-$ docker-compose run
+$ docker-compose up
```
## Play around!