This repository was archived by the owner on Aug 2, 2022. It is now read-only.
forked from inTheRye/zaim-analysis-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
67 lines (60 loc) · 1.59 KB
/
docker-compose.yml
File metadata and controls
67 lines (60 loc) · 1.59 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
version: '3'
services:
selenium:
image: selenium/standalone-chrome:3.141.59-lithium
volumes:
- /dev/shm:/dev/shm
# Uncomment if you need to access Selenium
# ports:
# - "4444:4444"
restart: always
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:6.6.2@sha256:c957a3acb7899597cced35a24fecb64988b398094d82b88212f8e40d2f790991
volumes:
- ./elasticsearch/config/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml
- esdata:/usr/share/elasticsearch/data
# Uncomment if you need to access Elasticsearch
# ports:
# - "9200:9200"
# - "9300:9300"
environment:
- discovery.type=single-node
restart: always
kibana:
image: docker.elastic.co/kibana/kibana:6.6.2@sha256:df44cab5fb54f4c696907c06424eeb01b073b13c4d3a116ea47c6f5131f2f649
ports:
- "5601:5601"
depends_on:
- elasticsearch
restart: always
postgres:
image: postgres:9.6
environment:
- POSTGRES_USER=airflow
- POSTGRES_PASSWORD=airflow
- POSTGRES_DB=airflow
restart: always
webserver:
build: ./airflow
restart: always
depends_on:
- postgres
- selenium
environment:
- LOAD_EX=n
- EXECUTOR=Local
volumes:
- ./airflow/dags:/usr/local/airflow/dags
- ./airflow/app:/usr/local/airflow/app
ports:
- "18080:8080"
command: webserver
healthcheck:
test: ["CMD-SHELL", "[ -f /usr/local/airflow/airflow-webserver.pid ]"]
interval: 30s
timeout: 30s
retries: 3
restart: always
volumes:
esdata:
driver: local