Skip to content

Docker configuration for airflow server with Localexecutor

Notifications You must be signed in to change notification settings

hussein-awala/airflow-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Airflow server

This project contains a docker-compose file, and some docker configurations to deploy an airflow server with local executor for testing/development.

Requirements

Development

To contribute to this project, you need to activate the pre-commit in order to apply the linters on each new commit:

pre-commit install

Customize your airflow docker image

To install your python packages and use them in the dags, you can add them to the requirements.txt file, and you can update the Dockerfile as you need.

Airflow webserver credentials

In this project version, we configure the airflow webserver credentials in the airflow docker compose file which we provide as environment variables for the which you can update it to add your user infos.

_AIRFLOW_WWW_USER_USERNAME: airflow_user
_AIRFLOW_WWW_USER_FIRSTNAME: Airflow
_AIRFLOW_WWW_USER_LASTNAME: Admin
_AIRFLOW_WWW_USER_EMAIL: [email protected]
_AIRFLOW_WWW_USER_ROLE: Admin
_AIRFLOW_WWW_USER_PASSWORD: airflow_password

Deploy the airflow server

Before deploying the server, make sure you have the folders dags, db, logs, and scripts which are attached to some docker services.

# choose your airflow version
export AIRFLOW_VERSION=2.4.1
invoke compose.up-airflow --build

Finally, in the browser, open http://localhost:8080 and put the username and password you used in this step and click on login.

Stop the airflow server

To stop the server, you have multiple option:

  • Stop the containers without deleting them:
    invoke compose.stop
  • Delete the containers:
    invoke compose.down
  • Delete the containers and the volumes:
    invoke compose.down --volumes

About

Docker configuration for airflow server with Localexecutor

Resources

Stars

Watchers

Forks

Packages

No packages published