-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
40 lines (39 loc) · 1023 Bytes
/
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
version: '3'
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:5.5.0
container_name: elasticsearch
ports:
- "9200:9200"
- "9300:9300"
expose:
- "9200"
- "9300"
environment:
- cluster.name=elasticsearch
- xpack.security.enabled=false
- discovery.type=single-node
- "ES_JAVA_OPTS=-Xms2048m -Xmx2048m"
rc:
image: sixsq/ring-container:3.46-SNAPSHOT
ports:
- "5000:5000"
volumes:
- ringcontainer:/opt/slipstream/ring-container
- ringcontainerexample:/opt/slipstream/ring-example
cimi:
image: sixsq/cimi:3.46-SNAPSHOT
ports:
- "8201:8201"
volumes:
- ringcontainer:/opt/slipstream/ring-container
- ringcontainerexample:/opt/slipstream/ring-example
- resources:/opt/slipstream/cimi/lib
cimi-resources:
image: sixsq/cimi-resources:3.46-SNAPSHOT
volumes:
- resources:/opt/slipstream/cimi/lib
volumes:
ringcontainer: {}
ringcontainerexample: {}
resources: {}