-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
55 lines (48 loc) · 1.07 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
version: '2'
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:6.8.3
environment:
- http.host=0.0.0.0
- transport.host=127.0.0.1
- xpack.security.enabled=false
- ES_PLUGINS_INSTALL=analysis-icu
ports:
- "9200:9200"
networks:
- elastic
volumes:
- hunspell-volume:/usr/share/elasticsearch/config/hunspell/
# - ./kubernetes/entrypoint.sh:/entrypoint.sh
#entrypoint: /entrypoint.sh
hunspell:
image: insekticid/elasticsearch-hunspell
build: .
depends_on:
- elasticsearch
networks:
- elastic
volumes:
- hunspell-volume:/usr/share/elasticsearch/config/hunspell/
entrypoint: sh
kibana:
image: docker.elastic.co/kibana/kibana:6.8.3
ports:
- "5601:5601"
networks:
- elastic
depends_on:
- elasticsearch
cerebro:
image: yannart/cerebro:0.7.3
ports:
- "9000:9000"
networks:
- elastic
depends_on:
- elasticsearch
networks:
elastic:
driver: bridge
volumes:
hunspell-volume: