mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-24 18:10:11 +00:00
20 lines
566 B
YAML
20 lines
566 B
YAML
---
|
|
version: '3.5'
|
|
services:
|
|
ingestion:
|
|
build:
|
|
context: ../../
|
|
dockerfile: docker/datahub-ingestion/Dockerfile
|
|
image: linkedin/datahub-ingestion:${DATAHUB_VERSION:-head}
|
|
hostname: ingestion
|
|
container_name: ingestion
|
|
command: "ingest -c /sample_recipe.yml"
|
|
volumes:
|
|
# Most of the config is embedded inside the sample recipe file.
|
|
- ./sample_recipe.yml:/sample_recipe.yml:ro
|
|
- ../../metadata-ingestion/examples/mce_files/bootstrap_mce.json:/bootstrap_mce.json:ro
|
|
|
|
networks:
|
|
default:
|
|
name: datahub_network
|