mirror of
https://github.com/open-metadata/OpenMetadata
synced 2026-05-24 09:39:11 +00:00
* Adding the different docker-compose file openmetadata and ingestion * Added two different env files for mysql and postgres * Updated the docker file path * Updated the path of docker folder structure * Fix docker * Updating the PR with necessary changes required --------- Co-authored-by: “Vijay” <“vijay.l@deuexsolutions.com”> Co-authored-by: Akash-Jain <Akash.J@deuexsolutions.com>
12 lines
488 B
Text
12 lines
488 B
Text
# Airflow Environment Variables for ingestion service
|
|
AIRFLOW__API__AUTH_BACKENDS="airflow.api.auth.backend.basic_auth,airflow.api.auth.backend.session"
|
|
AIRFLOW__CORE__EXECUTOR="LocalExecutor"
|
|
AIRFLOW__OPENMETADATA_AIRFLOW_APIS__DAG_GENERATED_CONFIGS="/opt/airflow/dag_generated_configs"
|
|
|
|
# PostgreSQL Environment Variables for ingestion service
|
|
DB_HOST="postgresql"
|
|
DB_PORT="5432"
|
|
AIRFLOW_DB="airflow_db"
|
|
DB_USER="airflow_user"
|
|
DB_SCHEME="postgresql+psycopg2"
|
|
DB_PASSWORD="airflow_pass"
|