Docker – Airflow DAG does not run properly independent if start_date is in the future, past or present
Today is 8th of September 2023. I run Airflow in Containers. Worker, Scheduler, etc. are on. I have the following DAG: from airflow import DAG from datetime import datetime from airflow.providers.postgres.operators.postgres import PostgresOperator with DAG('user_processing', start_date=datetime(2023,10,12), schedule_interval='@daily', catchup=False) as dag:…