Eugenio ef8b19142f
Create documentation resources for Data Quality as Code (closes #23800) (#24169)
* Brief documentation of installation requirements

* Minor fix to run tests only defined in OpenMetadata

* Add full example to Data Quality as Code

* Install `griffe2md` and fix docstrings

* Remove local openmetadata reference

* Fix writing, grammar and typos

* Fix test

* Fix formatting
2025-11-11 10:25:42 +00:00

32 lines
806 B
YAML

# Depends on OpenMetadata's compose file
# Should be run like `docker compose -f openmetadata-compose.yml -f docker-compose.yml up`
services:
jupyter:
image: quay.io/jupyter/minimal-notebook:python-3.11.10
container_name: jupyter-notebook
volumes:
- "./README.md:/home/jovyan/README.md"
- "./notebooks:/home/jovyan/notebooks"
- "../../../ingestion:/opt/openmetadata/ingestion"
networks:
- app_net
ports:
- "8888:8888"
dwh:
image: postgres:15-alpine
container_name: dwh-postgres
volumes:
- dwh_data:/var/lib/postgresql/data
- "./pg_scripts:/docker-entrypoint-initdb.d"
ports:
- "5432:5432"
environment:
POSTGRES_USER: user
POSTGRES_PASSWORD: pass
networks:
- app_net
volumes:
dwh_data: {}