Sriharsha Chintalapani de10cd254b
New docker structure (#10438)
* 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>
2023-03-06 08:58:53 -08:00

13 lines
488 B
Plaintext

# 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"