2019-12-16 17:44:12 -08:00
|
|
|
---
|
|
|
|
services:
|
|
|
|
ingestion:
|
2020-06-05 14:39:20 -07:00
|
|
|
build:
|
|
|
|
context: ../../
|
2021-03-02 11:48:26 -08:00
|
|
|
dockerfile: docker/datahub-ingestion/Dockerfile
|
2024-04-02 09:36:44 -05:00
|
|
|
image: acryldata/datahub-ingestion:${DATAHUB_VERSION:-head}
|
2019-12-16 17:44:12 -08:00
|
|
|
hostname: ingestion
|
2021-03-02 11:48:26 -08:00
|
|
|
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
|
2021-09-28 10:30:37 -07:00
|
|
|
- ../../metadata-ingestion/examples/mce_files/bootstrap_mce.json:/bootstrap_mce.json:ro
|
2019-12-16 17:44:12 -08:00
|
|
|
|
|
|
|
networks:
|
|
|
|
default:
|
2021-03-02 11:48:26 -08:00
|
|
|
name: datahub_network
|