mirror of
https://github.com/datahub-project/datahub.git
synced 2025-06-27 05:03:31 +00:00
18 lines
522 B
YAML
18 lines
522 B
YAML
---
|
|
services:
|
|
ingestion:
|
|
build:
|
|
context: ../../
|
|
dockerfile: docker/datahub-ingestion/Dockerfile
|
|
image: acryldata/datahub-ingestion:${DATAHUB_VERSION:-head}
|
|
hostname: 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
|