forked from andresionek91/airflow-autoscaling-ecs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
109 lines (103 loc) · 2.46 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
version: '3'
services:
redis:
image: 'redis:5.0.3'
command: redis-server
postgres:
image: postgres:10.4
environment:
- POSTGRES_USER=airflow
- POSTGRES_PASSWORD=airflow
- POSTGRES_DB=airflow
volumes:
- ./postgres_data:/var/lib/postgresql/data
ports:
- 5432:5432
webserver:
image: airflow:latest
restart: always
build: .
depends_on:
- postgres
- redis
environment:
- REDIS_HOST=redis
- REDIS_PORT=6379
- POSTGRES_HOST=postgres
- POSTGRES_PORT=5432
- POSTGRES_USER=airflow
- POSTGRES_PASSWORD=airflow
- POSTGRES_DB=airflow
- FERNET_KEY=${AIRFLOW_FERNET_KEY}
- AIRFLOW_BASE_URL=http://localhost:8080
- ENABLE_REMOTE_LOGGING=False
- STAGE=dev
volumes:
- ./dags:/usr/local/airflow/dags
ports:
- "8080:8080"
command: webserver
healthcheck:
test: ["CMD-SHELL", "[ -f /usr/local/airflow/airflow-webserver.pid ]"]
interval: 30s
timeout: 30s
retries: 3
flower:
image: airflow:latest
restart: always
depends_on:
- redis
- webserver
environment:
- REDIS_HOST=redis
- REDIS_PORT=6379
- POSTGRES_HOST=postgres
- POSTGRES_PORT=5432
- POSTGRES_USER=airflow
- POSTGRES_PASSWORD=airflow
- POSTGRES_DB=airflow
- STAGE=dev
ports:
- "5555:5555"
command: flower
scheduler:
image: airflow:latest
restart: always
depends_on:
- webserver
volumes:
- ./dags:/usr/local/airflow/dags
environment:
- REDIS_HOST=redis
- REDIS_PORT=6379
- POSTGRES_HOST=postgres
- POSTGRES_PORT=5432
- POSTGRES_USER=airflow
- POSTGRES_PASSWORD=airflow
- POSTGRES_DB=airflow
- FERNET_KEY=${AIRFLOW_FERNET_KEY}
- AIRFLOW_BASE_URL=http://localhost:8080
- ENABLE_REMOTE_LOGGING=False
- STAGE=dev
command: scheduler
worker:
image: airflow:latest
restart: always
depends_on:
- webserver
- scheduler
volumes:
- ./dags:/usr/local/airflow/dags
environment:
- REDIS_HOST=redis
- REDIS_PORT=6379
- POSTGRES_HOST=postgres
- POSTGRES_PORT=5432
- POSTGRES_USER=airflow
- POSTGRES_PASSWORD=airflow
- POSTGRES_DB=airflow
- FERNET_KEY=${AIRFLOW_FERNET_KEY}
- AIRFLOW_BASE_URL=http://localhost:8080
- ENABLE_REMOTE_LOGGING=False
- STAGE=dev
command: worker