diff --git a/README.md b/README.md index dcc248b..fa64fdc 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,11 @@ Source files for article with description on Medium. ![Version](/docs/img/version.png?raw=true "Version Screen") +### 16.12.2020: +1. Update Apache Airflow version to 1.10.14 +2. Change init db command to "airflow db init" + + ### 29.11.2020: 1. Update Apache Airflow version to 1.10.12 2. Update PostgreSQL DB to 13.1 diff --git a/docker-compose-with-celery-executor.yml b/docker-compose-with-celery-executor.yml index 18a72a5..8e86969 100644 --- a/docker-compose-with-celery-executor.yml +++ b/docker-compose-with-celery-executor.yml @@ -36,7 +36,7 @@ services: webserver: env_file: - .env - image: apache/airflow:1.10.12 + image: apache/airflow:1.10.14 ports: - 8080:8080 volumes: @@ -61,7 +61,7 @@ services: networks: - airflow flower: - image: apache/airflow:1.10.12 + image: apache/airflow:1.10.14 env_file: - .env ports: @@ -79,7 +79,7 @@ services: networks: - airflow scheduler: - image: apache/airflow:1.10.12 + image: apache/airflow:1.10.14 env_file: - .env volumes: @@ -96,7 +96,7 @@ services: networks: - airflow worker: - image: apache/airflow:1.10.12 + image: apache/airflow:1.10.14 env_file: - .env volumes: @@ -116,7 +116,7 @@ services: networks: - airflow initdb: - image: apache/airflow:1.10.12 + image: apache/airflow:1.10.14 env_file: - .env volumes: @@ -130,7 +130,7 @@ services: condition: on-failure delay: 8s max_attempts: 5 - command: -c "airflow initdb" + command: -c "airflow db init" depends_on: - redis - postgres