如何将高级Kafkaconfiguration添加到Landoop`fast-data-dev`图像

有谁知道如何将自定义的Kafkaconfiguration选项传递给landoop/fast-data-dev泊坞窗图像?

由于没有办法隐藏一个自定义的configuration文件和/或configuration参数,我到目前为止尝试的是将我自己的server.propertiesconfiguration文件挂载到/opt/confluent/etc/kafka ,将以下内容添加到我的docker中撰写文件

 landoop: hostname: 'landoop' image: 'landoop/fast-data-dev:latest' expose: - '3030' ports: - '3030:3030' environment: - RUNTESTS=0 - RUN_AS_ROOT=1 volumes: - ./docker/landoop/tmp:/tmp - ./docker/landoop/opt/confluent/etc/kafka:/opt/confluent/etc/kafka 

但是,这会导致Kafka抛出以下日志:

 landoop_1 | 2017-09-28 11:53:03,886 INFO exited: broker (exit status 1; not expected) landoop_1 | 2017-09-28 11:53:04,749 INFO spawned: 'broker' with pid 281 landoop_1 | 2017-09-28 11:53:05,851 INFO success: broker entered RUNNING state, process has stayed up for > than 1 seconds (startsecs) landoop_1 | 2017-09-28 11:53:11,867 INFO exited: rest-proxy (exit status 1; not expected) landoop_1 | 2017-09-28 11:53:12,604 INFO spawned: 'rest-proxy' with pid 314 landoop_1 | 2017-09-28 11:53:13,024 INFO exited: schema-registry (exit status 1; not expected) landoop_1 | 2017-09-28 11:53:13,735 INFO spawned: 'schema-registry' with pid 341 landoop_1 | 2017-09-28 11:53:13,739 INFO success: rest-proxy entered RUNNING state, process has stayed up for > than 1 seconds (startsecs) 

另外,当我去http:// localhost:3030 / kafka-topics-ui /时 ,我看到以下内容:

 KAFKA REST /api/kafka-rest-proxy CONNECTIVITY ERROR 

有什么build议么? 谢谢。