Skip to content

Commit

Permalink
Fix, use env in Airflow settings to connect to DB
Browse files Browse the repository at this point in the history
  • Loading branch information
VMois committed Apr 1, 2024
1 parent d7469a5 commit 3bb57af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker-compose.yaml
Expand Up @@ -11,7 +11,7 @@ x-airflow-common:
AIRFLOW__CORE__EXECUTOR: LocalExecutor
AIRFLOW__CORE__PARALLELISM: 3
AIRFLOW__WEBSERVER__WORKERS: 2
AIRFLOW__DATABASE__SQL_ALCHEMY_CONN: postgresql+psycopg2://salus:salus123@postgres/airflow
AIRFLOW__DATABASE__SQL_ALCHEMY_CONN: postgresql+psycopg2://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres/${AIRFLOW_DB_NAME}
AIRFLOW__CORE__FERNET_KEY: ''
AIRFLOW__CORE__DAGS_ARE_PAUSED_AT_CREATION: 'true'
AIRFLOW__CORE__LOAD_EXAMPLES: 'false'
Expand Down

0 comments on commit 3bb57af

Please sign in to comment.