Basic all-in-one Airflow docker image
1.9K
This repository contains Dockerfile of airflow for Docker's automated build published to the public Docker Hub Registry.
Pull the image from the Docker repository.
docker pull jbfavre/airflow-light
For example, if you need to install Extra Packages, edit the Dockerfile and than build-it.
docker build --rm -t jbfavre/airflow-light .
Start the stack (postgres, rabbitmq, airflow-webserver, airflow-scheduler airflow-flower & airflow-worker):
docker run -p 8080:8080 -p 5555:5555 -p 8793:8793 -ti jbfavre/airflow-light
Check Airflow Documentation
When using OSX with boot2docker, use: open http://$(boot2docker ip):8080
docker exec dockerairflow_webserver_1 airflow backfill tutorial -s 2015-05-01 -e 2015-06-01
Easy scaling using docker-compose:
docker-compose scale worker=5
This can be used to scale to a multi node setup using docker swarm.
Fork, improve and PR. ;-)
Content type
Image
Digest
Size
183.2 MB
Last updated
about 10 years ago
docker pull jbfavre/airflow-light