-
-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathdocker-compose.yml
132 lines (125 loc) · 3.06 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
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
- AIRFLOW__SCHEDULER__DAG_DIR_LIST_INTERVAL=15
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
# worker2:
# 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