You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by fh...@apache.org on 2020/03/20 15:28:42 UTC

[flink-playgrounds] branch master updated: [FLINK-16540] Fully specify bugfix version of Flink images in docker-compose.yaml

This is an automated email from the ASF dual-hosted git repository.

fhueske pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink-playgrounds.git


The following commit(s) were added to refs/heads/master by this push:
     new a27301e  [FLINK-16540] Fully specify bugfix version of Flink images in docker-compose.yaml
a27301e is described below

commit a27301ecaace8bacefb2464ef0a788b81ba11827
Author: Fabian Hueske <fh...@apache.org>
AuthorDate: Wed Mar 11 11:26:17 2020 +0100

    [FLINK-16540] Fully specify bugfix version of Flink images in docker-compose.yaml
    
    This closes #10.
---
 operations-playground/docker-compose.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/operations-playground/docker-compose.yaml b/operations-playground/docker-compose.yaml
index 4b25f15..919f648 100644
--- a/operations-playground/docker-compose.yaml
+++ b/operations-playground/docker-compose.yaml
@@ -35,7 +35,7 @@ services:
     depends_on:
       - kafka
   jobmanager:
-    image: flink:1.10-scala_2.11
+    image: flink:1.10.0-scala_2.11
     command: "jobmanager.sh start-foreground"
     ports:
       - 8081:8081
@@ -46,7 +46,7 @@ services:
     environment:
       - JOB_MANAGER_RPC_ADDRESS=jobmanager
   taskmanager:
-    image: flink:1.10-scala_2.11
+    image: flink:1.10.0-scala_2.11
     depends_on:
       - jobmanager
     command: "taskmanager.sh start-foreground"