├── .dockerignore ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── config └── airflow.cfg ├── dags └── tuto.py ├── docker-compose-CeleryExecutor.yml ├── docker-compose-LocalExecutor.yml └── script └── entrypoint.sh /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckel/docker-airflow/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckel/docker-airflow/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckel/docker-airflow/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckel/docker-airflow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckel/docker-airflow/HEAD/README.md -------------------------------------------------------------------------------- /config/airflow.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckel/docker-airflow/HEAD/config/airflow.cfg -------------------------------------------------------------------------------- /dags/tuto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckel/docker-airflow/HEAD/dags/tuto.py -------------------------------------------------------------------------------- /docker-compose-CeleryExecutor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckel/docker-airflow/HEAD/docker-compose-CeleryExecutor.yml -------------------------------------------------------------------------------- /docker-compose-LocalExecutor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckel/docker-airflow/HEAD/docker-compose-LocalExecutor.yml -------------------------------------------------------------------------------- /script/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puckel/docker-airflow/HEAD/script/entrypoint.sh --------------------------------------------------------------------------------