Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Dragos0000 committed Sep 8, 2022
1 parent ea73c05 commit e4620cd
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions infra/airflow/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ x-airflow-common:
&airflow-common-env
IS_PRIME_ENV: 'true'
AIRFLOW__CORE__EXECUTOR: CeleryExecutor
AIRFLOW__CORE__SQL_ALCHEMY_CONN: postgresql+psycopg2://airflow:airflow@postgres:5433/airflow
AIRFLOW__CELERY__RESULT_BACKEND: db+postgresql://airflow:airflow@postgres:5433/airflow
AIRFLOW__CELERY__BROKER_URL: redis://:@redis:6380/0
AIRFLOW__CORE__SQL_ALCHEMY_CONN: postgresql+psycopg2://airflow:airflow@postgres/airflow
AIRFLOW__CELERY__RESULT_BACKEND: db+postgresql://airflow:airflow@postgres/airflow
AIRFLOW__CELERY__BROKER_URL: redis://:@redis:6379/0
AIRFLOW__CORE__FERNET_KEY: ''
AIRFLOW__CORE__DAGS_ARE_PAUSED_AT_CREATION: 'true'
AIRFLOW__CORE__ENABLE_XCOM_PICKLING: "true"
Expand Down Expand Up @@ -90,7 +90,6 @@ x-airflow-common:
services:
postgres:
image: postgres:13
command: -p 5433
container_name: postgres-airflow-${ENVIRONMENT}
environment:
POSTGRES_USER: airflow
Expand All @@ -110,7 +109,7 @@ services:
image: redis:7.0.4-alpine3.16
container_name: redis-airflow-${ENVIRONMENT}
expose:
- 6380
- 6379
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 5s
Expand Down

0 comments on commit e4620cd

Please sign in to comment.