Github user schmichri commented on the issue: https://github.com/apache/flink/pull/2917 short: it works! long: my scenario a docker-compose setup: ` jobmanager: image: flink:1.2.0_rc0 container_name: "jobmanager" expose: - "6123" - "8081" ports: - "8081:8081" - "10.0.0.11:6123:6123" command: jobmanager environment: - JOB_MANAGER_RPC_ADDRESS=10.0.0.11 ` and the taskmanager(s): ` taskmanager: image: flink:1.2.0_rc0 expose: - "6121" - "6122" command: taskmanager - "jobmanager:jobmanager" environment: - JOB_MANAGER_RPC_ADDRESS=10.0.0.11 extra_hosts: - "jobmanager:10.0.0.11"` 1. the jobmanager webinterface works now 2. the taskmanager can connect now to the jobmanager previous errormessage: > dropping message [class akka.actor.ActorSelectionMessage] for non-local recipient [Actor[akka.tcp://flink@10.0.0.11:6123/]] arriving at [akka.tcp://flink@10.0.0.11:6123] inbound addresses are [akka.tcp://flink@172.31.0.2:6123] > flink-master | 2017-01-09 15:30:39,865 ERROR akka.remote.EndpointWriter thats very cool!
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---