-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
executable file
·63 lines (56 loc) · 1.16 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
version: "3.4"
services:
py-srv:
build: py-srv
healthcheck:
test: "exit 0"
command: sh -c "/wait && python app.py"
environment:
- WAIT_HOSTS=db:1433,elasticsearch:9200
- WAIT_HOSTS_TIMEOUT=300
- WAIT_SLEEP_INTERVAL=30
- WAIT_HOST_CONNECT_TIMEOUT=30
depends_on:
- db
- elasticsearch
links:
- "db:db"
- "elasticsearch:elasticsearch"
db:
build: db
elasticsearch:
image: elasticsearch:7.12.0
healthcheck:
test: "exit 0"
interval: 1m30s
timeout: 30s
retries: 5
start_period: 30s
environment:
- discovery.type=single-node
- bootstrap.memory_lock=true
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
ulimits:
memlock:
soft: -1
hard: -1
ports:
- 9200:9200
kibana:
image: kibana:7.12.0
healthcheck:
test: "exit 0"
interval: 1m30s
timeout: 30s
retries: 5
start_period: 30s
environment:
- "ELASTICSEARCH_URL=http://elasticsearch:9200"
- "SERVER_NAME=127.0.0.1"
ports:
- 5601:5601
depends_on:
- elasticsearch
volumes:
esdata:
driver: local