You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ma...@apache.org on 2022/03/03 12:06:12 UTC

[flink-docker] branch dev-master updated: [FLINK-24474] reset taskmanager.host (#107)

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

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


The following commit(s) were added to refs/heads/dev-master by this push:
     new 14abb80  [FLINK-24474] reset taskmanager.host (#107)
14abb80 is described below

commit 14abb80f8bdd0cc17aa3f4d0f0360a285663965c
Author: Niklas Semmler <me...@users.noreply.github.com>
AuthorDate: Thu Mar 3 13:06:05 2022 +0100

    [FLINK-24474] reset taskmanager.host (#107)
---
 Dockerfile-debian.template | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Dockerfile-debian.template b/Dockerfile-debian.template
index 2921870..d944877 100644
--- a/Dockerfile-debian.template
+++ b/Dockerfile-debian.template
@@ -85,6 +85,7 @@ RUN sed -i 's/rest.address: localhost/rest.address: 0.0.0.0/g' $FLINK_HOME/conf/
 RUN sed -i 's/rest.bind-address: localhost/rest.bind-address: 0.0.0.0/g' $FLINK_HOME/conf/flink-conf.yaml
 RUN sed -i 's/jobmanager.bind-host: localhost/jobmanager.bind-host: 0.0.0.0/g' $FLINK_HOME/conf/flink-conf.yaml
 RUN sed -i 's/taskmanager.bind-host: localhost/taskmanager.bind-host: 0.0.0.0/g' $FLINK_HOME/conf/flink-conf.yaml
+RUN sed -i '/taskmanager.host: localhost/d' $FLINK_HOME/conf/flink-conf.yaml
 
 # Configure container
 COPY docker-entrypoint.sh /