Home > Mobile >  Show admin configuration in airflow running on docker-compose
Show admin configuration in airflow running on docker-compose

Time:06-23

Does anybody know how to unblock admin>configuration in UI of airflow which is running with docker-compose? When I try to open it it shows '# Your Airflow administrator chose not to expose the configuration, most likely for security reasons.'

CodePudding user response:

Set an environment variable AIRFLOW__WEBSERVER__EXPOSE_CONFIG=True.

  • Related