-
My airflow3 test environment from the docker-compose (https://airflow.apache.org/docs/apache-airflow/stable/howto/docker-compose/index.html) does not appear to have a sqlite provider. What did I miss and how can I (hopefully easily) add this to my environment? |
Beta Was this translation helpful? Give feedback.
Answered by
potiuk
Jul 31, 2025
Replies: 1 comment 2 replies
-
Any I will answer my own question. This may not be the best approach but I was able to get the provider into the providers list so I could create a connection object.
Although this provides the provider in the dropdown list its a janky approach. Looking for something more stable. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You need to build your own image / extend airflow's image. Our quick-start docker compose explains how and provides example. Just FYI - you do not need sqlite provider to use sqlite as Airflow metadata db - it's only needed if you want to itnterat with some sqlite databases via sql operators.