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:29:46 UTC

[flink-playgrounds] branch release-1.10 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 release-1.10
in repository https://gitbox.apache.org/repos/asf/flink-playgrounds.git


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

commit f3261ca2bcfb69439050024cd94f2ceae488b0f1
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"