-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
75 lines (70 loc) · 1.59 KB
/
docker-compose.yml
File metadata and controls
75 lines (70 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
68
69
70
71
72
73
74
75
services:
bakilian:
image: malleable:latest
environment:
- ELASTICSEARCH_HOST=192.168.178.79
- ALGO=Grage
- EPSILON=0.1
- INSTANCE_MINJOBS=20
- INSTNACE_MAXJOBS=500
- INSTANCE_MINMACHINES=100
- INSTANCE_MAXMACHINES=500
- INSTANCE_MAX_SEQUENTIAL_TIME=500
- ES_INDEX=raspidata-
- INSTANCE_POLICY=push
networks:
- es-net
deploy:
resources:
limits:
cpus: 1.0
volumes:
- algoInstances:/home/instances
bafelix:
image: malleable:latest
environment:
- ELASTICSEARCH_HOST=192.168.178.79
- ALGO=Land
- EPSILON=0.1
- INSTANCE_MINJOBS=20
- INSTNACE_MAXJOBS=500
- INSTANCE_MINMACHINES=100
- INSTANCE_MAXMACHINES=500
- INSTANCE_MAX_SEQUENTIAL_TIME=500
- ES_INDEX=raspidata-
- INSTANCE_POLICY=pull
networks:
- es-net
deploy:
resources:
limits:
cpus: 1.0
volumes:
- algoInstances:/home/instances
elasticsearch:
container_name: es-container
image: docker.elastic.co/elasticsearch/elasticsearch:7.11.0
environment:
- xpack.security.enabled=false
- "discovery.type=single-node"
networks:
- es-net
ports:
- 9200:9200
- 9300:9300
kibana:
container_name: kb-container
image: docker.elastic.co/kibana/kibana:7.17.5
environment:
- ELASTICSEARCH_HOSTS=http://192.168.178.79:9200
networks:
- es-net
depends_on:
- elasticsearch
ports:
- 5601:5601
networks:
es-net:
driver: bridge
volumes:
algoInstances: