This repo is the scaffolding for a Dockerized Airflow container
Build the image to your local docker repo
docker build . -t airflow
### Run docker container
Launch the docker contianer, this will spin up the `Airflow Scheduler` & the `Airflow Webserver` at `localhost:8080`
```sh
# run container named rr_etl in detached mode and remove at exit
docker run -d -p 8080:8080 --rm \
--name airflow_container \
airflow
Launch the Airflow dashboard by browsing to localhost:8080