From a99a513bc283d56b87a6fc94f3abe47c8e53c74a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Ramiro?= <13081142+DonHaul@users.noreply.github.com> Date: Tue, 9 Jul 2024 11:00:27 +0200 Subject: [PATCH] gh wf: set airflow.cfg to use docker correct host:port (#7) --- airflow.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airflow.cfg b/airflow.cfg index 2f984f7..8600a02 100644 --- a/airflow.cfg +++ b/airflow.cfg @@ -226,7 +226,7 @@ daemon_umask = 0o077 # SqlAlchemy supports many different database engines. # More information here: # http://airflow.apache.org/docs/apache-airflow/stable/howto/set-up-database.html#database-uri -sql_alchemy_conn = postgresql+psycopg2://airflow:airflow@localhost/airflow +sql_alchemy_conn = postgresql+psycopg2://airflow:airflow@postgres/airflow # Extra engine specific keyword args passed to SQLAlchemy's create_engine, as a JSON-encoded value # Example: sql_alchemy_engine_args = {"arg1": True}