Closed
Description
Apache Airflow Provider(s)
fab
Versions of Apache Airflow Providers
apache-airflow-providers-fab==2.2.1
Apache Airflow version
3.0.2
Operating System
macOS 15.5
Deployment
Docker-Compose
Deployment details
Docker Compose version v2.35.1-desktop.1
What happened
I wanted to change the color of navbar, followed documentation but nothing happened
What you think should happen instead
If I change the color of the navbar it should change
How to reproduce
- Follow the steps of https://airflow.apache.org/docs/apache-airflow/stable/howto/docker-compose/index.html#
- Inside of
docker-compose.yaml
file do the next change:
# image: ${AIRFLOW_IMAGE_NAME:-apache/airflow:3.0.2}
build: .
- Create
Dockerfile
FROM apache/airflow:3.0.2
ADD requirements.txt .
RUN pip install apache-airflow==${AIRFLOW_VERSION} -r requirements.txt
- Create
requirements.txt
apache-airflow-providers-fab==2.2.1
- In the same directory, go to
config/airflow.cfg
and changenavbar_color
value to#219151
- In terminal, run
docker compose up -d
and thendocker exec -it <apiserver-container> /bin/bash
- Execute
airflow config list | grep navbar_color
and check we have the same value from step 5. - Go to Airflow UI and check that navbar color has not changed
Anything else
No response
Are you willing to submit PR?
- Yes I am willing to submit a PR!
Code of Conduct
- I agree to follow this project's Code of Conduct