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:37:51 UTC

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


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

commit 95d2fdc0078df96b2ae2b4a40ccde76f83327f8a
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
    
    * Update Flink version to 1.9.2
    
    This closes #10.
---
 docker/ops-playground-image/Dockerfile    | 2 +-
 operations-playground/docker-compose.yaml | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/docker/ops-playground-image/Dockerfile b/docker/ops-playground-image/Dockerfile
index 59b40a0..d931804 100644
--- a/docker/ops-playground-image/Dockerfile
+++ b/docker/ops-playground-image/Dockerfile
@@ -32,7 +32,7 @@ RUN mvn clean install
 # Build Operations Playground Image
 ###############################################################################
 
-FROM flink:1.9.0-scala_2.11
+FROM flink:1.9.2-scala_2.11
 
 WORKDIR /opt/flink/bin
 
diff --git a/operations-playground/docker-compose.yaml b/operations-playground/docker-compose.yaml
index 5a88b98..270bb2d 100644
--- a/operations-playground/docker-compose.yaml
+++ b/operations-playground/docker-compose.yaml
@@ -20,7 +20,7 @@ version: "2.1"
 services:
   client:
     build: ../docker/ops-playground-image
-    image: apache/flink-ops-playground:2-FLINK-1.9-scala_2.11
+    image: apache/flink-ops-playground:3-FLINK-1.9-scala_2.11
     command: "flink run -d -p 2 /opt/ClickCountJob.jar --bootstrap.servers kafka:9092 --checkpointing --event-time"
     depends_on:
       - jobmanager
@@ -35,7 +35,7 @@ services:
     depends_on:
       - kafka
   jobmanager:
-    image: flink:1.9-scala_2.11
+    image: flink:1.9.2-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.9-scala_2.11
+    image: flink:1.9.2-scala_2.11
     depends_on:
       - jobmanager
     command: "taskmanager.sh start-foreground"