mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-31 21:03:03 +00:00
15 lines
450 B
YAML
15 lines
450 B
YAML
---
|
|
version: '3.5'
|
|
services:
|
|
ingestion:
|
|
image: ingestion
|
|
hostname: ingestion
|
|
container_name: ingestion
|
|
environment:
|
|
- KAFKA_BOOTSTRAP_SERVER=broker:29092
|
|
- KAFKA_SCHEMAREGISTRY_URL=http://schema-registry:8081
|
|
command: "bash -c 'cd datahub-src/metadata-ingestion/mce-cli && python mce_cli.py produce -d bootstrap_mce.dat -b broker:29092 -s http://schema-registry:8081'"
|
|
|
|
networks:
|
|
default:
|
|
name: datahub_network |