GitHub user bobir01 added a comment to the discussion: DAGS WHERE NOT SHOWING 
IN AIRFLOW UI

@Prithivi-Krishna-pk i am facing the same issue, my dags are visible in 
initially, then i trig one random dag, all my dags get dissappeared 
immediately, i am using airflow 2.10.5
in airflow dags list: it is showing i have 89 dags , but in UI only 1 running 
dag is shown

here my Docker file:
```
FROM apache/airflow:2.10.5-python3.10

USER root

RUN apt-get update \
  && apt-get install -y --no-install-recommends \
         vim \
  && apt-get autoremove -yqq --purge \
  && apt-get clean \
  && rm -rf /var/lib/apt/lists/*

USER airflow

ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1

RUN pip install --upgrade pip
COPY ./requirements.txt .
RUN pip install --no-cache-dir "apache-airflow==2.10.5" -r requirements.txt

COPY --chown=airflow:root ./dags /opt/airflow/dags
```

and defaiult docker compose shown in the documentation

the strange this i wanted to upgrade the airflow since my old version was 2.8.0 
and it worked perfectly, then i completely removed all docker and volumes and 
up the new version docker

did anyone have this kind of issue, what do to

GitHub link: 
https://github.com/apache/airflow/discussions/46760#discussioncomment-12226180

----
This is an automatically sent email for [email protected].
To unsubscribe, please send an email to: [email protected]

Reply via email to