mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-01 11:19:05 +00:00
* build(docker): refactor docker build scripts - add "build" option to docker-compose files to simplify rebuilding of images - create "start.sh" script so it's easier to override "command" in the quickstart's docker-compose file - use dockerize to wait for requisite services to start up - add a dedicated Dockerfile for kafka-setup This fixes https://github.com/linkedin/datahub/issues/1549 & https://github.com/linkedin/datahub/issues/1550
7 lines
151 B
Bash
7 lines
151 B
Bash
#!/bin/sh
|
|
|
|
# -wait tcp://GMS_HOST:$GMS_PORT \
|
|
dockerize \
|
|
-wait tcp://$KAFKA_BOOTSTRAP_SERVER \
|
|
-timeout 240s \
|
|
java -jar mce-consumer-job.jar |