-
Notifications
You must be signed in to change notification settings - Fork 8
/
docker-compose.yml
59 lines (55 loc) · 1.3 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
version: "3.9"
services:
pareto-anywhere:
build:
context: .
dockerfile: Dockerfile
image: reelyactive/pareto-anywhere:latest
container_name: pareto-anywhere
restart: unless-stopped
ports:
- "3001:3001/tcp"
- "50000:50000/udp"
- "50001:50001/udp"
networks:
- pareto-anywhere-elastic
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:7.13.4
container_name: elasticsearch
restart: unless-stopped
environment:
- node.name=es01
- xpack.security.enabled=false
- discovery.type=single-node
cap_add:
- IPC_LOCK
ports:
- "9200:9200"
volumes:
- type: volume
source: elasticsearch-data
target: /usr/share/elasticsearch/data
networks:
- pareto-anywhere-elastic
kibana:
image: docker.elastic.co/kibana/kibana:7.13.4
container_name: kibana
restart: unless-stopped
environment:
- ELASTICSEARCH_HOSTS="http://elasticsearch:9200"
ports:
- "5601:5601"
depends_on:
- elasticsearch
volumes:
- type: volume
source: kibana-data
target: /usr/share/kibana/config
networks:
- pareto-anywhere-elastic
volumes:
elasticsearch-data:
kibana-data:
networks:
pareto-anywhere-elastic:
driver: bridge