/docker-airflow

Docker Apache Airflow

Primary LanguageShellApache License 2.0Apache-2.0

docker-airflow

This repository contains Dockerfile of apache-airflow for Docker's automated build published to the public Docker Hub Registry.

Informations

Installation

Pull the image from the Docker repository.

docker pull amarupak/airflow

Build

Optionally install Extra Airflow Packages and/or python dependencies at build time :

docker build --rm --build-arg AIRFLOW_DEPS="datadog,dask" -t amarupak/airflow .
docker build --rm --build-arg PYTHON_DEPS="flask_oauthlib>=0.9" -t amarupak/airflow .

or combined

docker build --rm --build-arg AIRFLOW_DEPS="datadog,dask" --build-arg PYTHON_DEPS="flask_oauthlib>=0.9" -t amarupak/airflow .