This is a sample Apache Airflow project.
-
Build the Docker image:
docker build -t airflow_project .
-
Run the Docker container:
docker run -d -p 8080:8080 airflow_project
-
Access the Airflow web server at http://localhost:8080.
example_dag
: A simple DAG that prints "Hello World".another_dag
: A dummy DAG that runs hourly.
custom_operator.py
: An example of a custom operator.