> On 21 Feb 2019, at 13:39, [email protected] wrote: > > I am running my Airflow on Docker server. When I enable RBAC in Airflow, I am > able to see Login screen, But when I create a Admin User, By going on > container Bash. I am not able to login. Checked same without Docker > Container, Its working fine.Please help me to resolve this issue. > Thanks in Advance.
https://github.com/puckel/docker-airflow/issues/201#issuecomment-462816649 gives some (terse) info You need to do something like: docker exec -ti airflow-webserver /entrypoint.sh bash before running `airflow create_user`. Does that help? -ash
