{"id":19396118,"url":"https://github.com/ruanbekker/docker-apache-airflow","last_synced_at":"2026-05-08T03:31:40.230Z","repository":{"id":139706803,"uuid":"395217155","full_name":"ruanbekker/docker-apache-airflow","owner":"ruanbekker","description":"Apache Airflow using Docker Compose","archived":false,"fork":false,"pushed_at":"2021-08-12T12:43:46.000Z","size":13,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-02-23T06:31:13.495Z","etag":null,"topics":["airflow","airflow-docker","docker","docker-compose"],"latest_commit_sha":null,"homepage":"https://ruan.dev","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ruanbekker.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-08-12T06:24:38.000Z","updated_at":"2021-08-12T12:45:27.000Z","dependencies_parsed_at":null,"dependency_job_id":"de8d4dec-3807-4b7f-8a60-d5197390fdee","html_url":"https://github.com/ruanbekker/docker-apache-airflow","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ruanbekker%2Fdocker-apache-airflow","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ruanbekker%2Fdocker-apache-airflow/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ruanbekker%2Fdocker-apache-airflow/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ruanbekker%2Fdocker-apache-airflow/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ruanbekker","download_url":"https://codeload.github.com/ruanbekker/docker-apache-airflow/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240564604,"owners_count":19821422,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["airflow","airflow-docker","docker","docker-compose"],"created_at":"2024-11-10T10:33:45.144Z","updated_at":"2026-05-08T03:31:35.196Z","avatar_url":"https://github.com/ruanbekker.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# docker-apache-airflow\nApache Airflow using Docker Compose\n\n## Usage\n\n### Docker Compose\n\nIm using the [taskfile](https://taskfile.dev) build tool to simplify usage. But running without taskfile,\n\nTo build the dependency image:\n\n```\ndocker-compose -f deps.docker-compose.yml build\n```\n\nOnce the `airflow-dependencies:1.10.14` image is built, you can build the rest and start the containers:\n\n```\ndocker-compose up --build -d\n```\n\n### Taskfile\n\nIm using the [taskfile](https://taskfile.dev) build tool to simplify usage.\n\nTo install on a mac:\n\n```\nbrew install go-task/tap/go-task\n```\n\nTo install on linux: \n\n```\nsh -c \"$(curl --location https://taskfile.dev/install.sh)\" -- -d -b /usr/local/bin\n```\n\nThen for help run:\n\n```\ntask\n\ntask: Available tasks for this project:\n* build: \tBuilds airflow\n* clean: \tRuns docker system prune -f --all\n* default: \tRuns the help task\n* down: \tStops containers\n* help: \tRuns the list tasks\n* logs: \tRuns docker-compose logs -f\n* run: \t\tRuns docker-compose up -d\n* verify: \tVerify if docker is running\n```\n\nTo build and start:\n\n```\ntask build\ntask run\n```\n\n## Endpoints\n\nThe default username is `admin` and the password is `password` but configurable on the environment variable `AIRFLOW_ADMIN_PASSWORD`.\n\nAirflow:\n- http://localhost:8080\n\nFlower:\n- http://localhost:5556\n\n## Screenshots\n\nAirflow UI:\n\n![image](https://user-images.githubusercontent.com/567298/129044818-c0db478e-41c1-4bb4-bf82-c6821f2bbda3.png)\n\nGraph View:\n\n![image](https://user-images.githubusercontent.com/567298/129044904-82f2586e-7a6f-48f0-beae-bab1d002ae26.png)\n\nFlower Dashboard:\n\n![image](https://user-images.githubusercontent.com/567298/129045052-be4b5670-09b5-419c-a590-83a1c5da0435.png)\n\nDetail about the worker:\n\n![image](https://user-images.githubusercontent.com/567298/129045405-2fe465cb-7ffe-4d42-ad83-7764e31e9aeb.png)\n\n\nExecuted Tasks:\n\n![image](https://user-images.githubusercontent.com/567298/129045257-1420898c-a7d4-4348-8f61-5610ec5c875c.png)\n\nBroker:\n\n![image](https://user-images.githubusercontent.com/567298/129045321-7202758e-b8a9-4116-ba02-bb33c32f821c.png)\n\n\n## Resources\n\n- [Airflow Executor: Celery](https://airflow.apache.org/docs/apache-airflow/1.10.6/howto/executor/use-celery.html)\n- [Flower: Authentication](https://airflow.apache.org/docs/apache-airflow/stable/security/flower.html)\n- [Github/Airflow: Example docker-compose.yml](https://github.com/apache/airflow/blob/main/docs/apache-airflow/start/docker-compose.yaml)\n- [Blog: Deploy Airflow in Multiple Containers](https://towardsdatascience.com/deploy-apache-airflow-in-multiple-docker-containers-7f17b8b3de58)\n- [Blog: Run Airflow in Docker](https://betterprogramming.pub/how-to-start-running-apache-airflow-in-docker-6567d8165653)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fruanbekker%2Fdocker-apache-airflow","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fruanbekker%2Fdocker-apache-airflow","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fruanbekker%2Fdocker-apache-airflow/lists"}