/airflow-py

Using airflow in docker

Primary LanguageMakefile

Airflow

Using airflow in docker

1 - Following this GUIDE

  • Download the docker compose from the apache airflow LINK.
  • Create the necessary folder structure
> mkdir ./dags ./logs ./plugins
  • DB migration and create the first airflow user. user: airflow password: airflow
> docker-compose up airflow-init
  • Run airflow:
> docker-compose up
docker ps
  • Cleanup
> docker-compose down --volumes --rmi all