-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
61 lines (58 loc) · 1.65 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
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"
pgadmin:
image: dpage/pgadmin4
depends_on:
- postgres
ports:
- "53603:53603"
- "80:80"
environment:
PGADMIN_DEFAULT_EMAIL: [email protected]
PGADMIN_DEFAULT_PASSWORD: root
webserver:
image: puckel/docker-airflow:1.10.9
restart: always
depends_on:
- postgres
environment:
- LOAD_EX=n
- EXECUTOR=Local
logging:
options:
max-size: 10m
max-file: "3"
volumes:
# - ./dags:/usr/local/airflow/dags
- ./notebooks/src:/usr/local/airflow/dags
- ./notebooks/data:/usr/local/airflow/data
- ./notebooks/output:/usr/local/airflow/output
# - ./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
lab:
image: jupyter/base-notebook
volumes:
- ./notebooks/:/notebooks
ports:
- "8888:8888"
environment:
- JUPYTER_ENABLE_LAB=1
- GRANT_SUDO=yes
command: start-notebook.sh --NotebookApp.notebook_dir=/notebooks