-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
116 lines (110 loc) · 2.48 KB
/
docker-compose.yml
File metadata and controls
116 lines (110 loc) · 2.48 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
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
version: '2'
services:
mysql:
tty: true
image: eosystems/mysql-eozkill
volumes_from:
- storage-mysql
ports:
- "13506:3306"
networks:
- kibana_net
container_name: mysql-eozkill
build: build/mysql-eozkill
environment:
MYSQL_ROOT_PASSWORD: password
storage-mysql:
tty: true
image: eosystems/storage-mysql-eozkill
#build: build/storage-mysql-eozkill
container_name: storage-mysql-eozkill
eozkill:
#tty: true
image: eosystems/eozkill
volumes_from:
- storage-eozkill
container_name: app-eozkill
networks:
- kibana_net
depends_on:
- elasticsearch
build:
context: build/eozkill
args:
gitbranch: "master"
ports:
- "13200:3000"
links:
- mysql
storage-eozkill:
tty: true
image: eosystems/storage-eozkill
#build: build/storage-eozkill
container_name: storage-eozkill
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:5.4.0
container_name: elasticsearch
environment:
- cluster.name=dev-kibana-cluster
- node.name=dev-kibana-01
- bootstrap.memory_lock=true
- xpack.security.enabled=false
- xpack.monitoring.enabled=true
- xpack.watcher.enabled=false
- xpack.graph.enabled=false
- xpack.monitoring.history.duration=1d
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
ulimits:
memlock:
soft: -1
hard: -1
nofile:
soft: 65536
hard: 65536
mem_limit: 1g
memswap_limit: 1g
cap_add:
- IPC_LOCK
volumes:
- es_data_a:/usr/share/elasticsearch/data
#- ~/005_Other:/home
ports:
- 9200:9200
networks:
- kibana_net
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "10"
kibana:
image: docker.elastic.co/kibana/kibana:5.4.0
container_name: kibana
environment:
ELASTICSEARCH_URL: "http://elasticsearch:9200"
XPACK_MONITORING_ELASTICSEARCH_URL: "http://elasticsearch:9200"
XPACK_SECURITY_ENABLED: "false"
ports:
- 5601:5601
networks:
- kibana_net
mem_limit: 2g
memswap_limit: 2g
depends_on:
- elasticsearch
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "10"
volumes:
es_data_a:
driver: local
networks:
kibana_net:
driver: bridge
ipam:
driver: default
config:
- subnet: 172.99.0.0/24
gateway: 172.99.0.1