-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-LocalExecutor.yml
More file actions
44 lines (43 loc) · 1.19 KB
/
docker-compose-LocalExecutor.yml
File metadata and controls
44 lines (43 loc) · 1.19 KB
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
version: '3.7'
services:
# postgres:
# image: postgres:9.6
# environment:
# - POSTGRES_USER=airflow
# - POSTGRES_PASSWORD=airflow
# - POSTGRES_DB=airflow
# logging:
# options:
# max-size: 10m
# max-file: "3"
aiflow_db:
image: mysql:5.6
environment:
MYSQL_ROOT_PASSWORD: testing123
MYSQL_DATABASE: airflow
MYSQL_USER: admin
MYSQL_PASWWORD: testing123
MYSQL_PORT: 3306
webserver:
image: phani29/airflow_docker:1.10.14
restart: always
depends_on:
- aiflow_db
environment:
- LOAD_EX=n
- EXECUTOR=Local
logging:
options:
max-size: 10m
max-file: "3"
volumes:
- ./dags:/usr/local/airflow/dags
# - ./plugins:/usr/local/airflow/plugins
ports:
- "8080:8080"
command: webserver
healthcheck:
test: ["CMD-SHELL", "[ -f /usr/local/airflow/airflow-webserver.pid ]"]
interval: 30s
timeout: 30s
retries: 3