Compare commits
3 Commits
8386212c8f
...
c7247165f6
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c7247165f6 | ||
|
|
d258759799 | ||
|
|
ceb0f7c815 |
@@ -42,6 +42,11 @@ Source files for article with description on Medium.
|
|||||||

|

|
||||||
|
|
||||||
|
|
||||||
|
### 16.12.2020:
|
||||||
|
1. Update Apache Airflow version to 1.10.14
|
||||||
|
2. Change init db command to "airflow db init"
|
||||||
|
|
||||||
|
|
||||||
### 29.11.2020:
|
### 29.11.2020:
|
||||||
1. Update Apache Airflow version to 1.10.12
|
1. Update Apache Airflow version to 1.10.12
|
||||||
2. Update PostgreSQL DB to 13.1
|
2. Update PostgreSQL DB to 13.1
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ services:
|
|||||||
webserver:
|
webserver:
|
||||||
env_file:
|
env_file:
|
||||||
- .env
|
- .env
|
||||||
image: apache/airflow:1.10.12
|
image: apache/airflow:1.10.14
|
||||||
ports:
|
ports:
|
||||||
- 8080:8080
|
- 8080:8080
|
||||||
volumes:
|
volumes:
|
||||||
@@ -61,7 +61,7 @@ services:
|
|||||||
networks:
|
networks:
|
||||||
- airflow
|
- airflow
|
||||||
flower:
|
flower:
|
||||||
image: apache/airflow:1.10.12
|
image: apache/airflow:1.10.14
|
||||||
env_file:
|
env_file:
|
||||||
- .env
|
- .env
|
||||||
ports:
|
ports:
|
||||||
@@ -79,7 +79,7 @@ services:
|
|||||||
networks:
|
networks:
|
||||||
- airflow
|
- airflow
|
||||||
scheduler:
|
scheduler:
|
||||||
image: apache/airflow:1.10.12
|
image: apache/airflow:1.10.14
|
||||||
env_file:
|
env_file:
|
||||||
- .env
|
- .env
|
||||||
volumes:
|
volumes:
|
||||||
@@ -96,7 +96,7 @@ services:
|
|||||||
networks:
|
networks:
|
||||||
- airflow
|
- airflow
|
||||||
worker:
|
worker:
|
||||||
image: apache/airflow:1.10.12
|
image: apache/airflow:1.10.14
|
||||||
env_file:
|
env_file:
|
||||||
- .env
|
- .env
|
||||||
volumes:
|
volumes:
|
||||||
@@ -116,7 +116,7 @@ services:
|
|||||||
networks:
|
networks:
|
||||||
- airflow
|
- airflow
|
||||||
initdb:
|
initdb:
|
||||||
image: apache/airflow:1.10.12
|
image: apache/airflow:1.10.14
|
||||||
env_file:
|
env_file:
|
||||||
- .env
|
- .env
|
||||||
volumes:
|
volumes:
|
||||||
@@ -130,7 +130,7 @@ services:
|
|||||||
condition: on-failure
|
condition: on-failure
|
||||||
delay: 8s
|
delay: 8s
|
||||||
max_attempts: 5
|
max_attempts: 5
|
||||||
command: -c "airflow initdb"
|
command: -c "airflow db init"
|
||||||
depends_on:
|
depends_on:
|
||||||
- redis
|
- redis
|
||||||
- postgres
|
- postgres
|
||||||
|
|||||||
Reference in New Issue
Block a user