-
Notifications
You must be signed in to change notification settings - Fork 6
/
docker-compose.yml
54 lines (49 loc) · 1.22 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
version: '3.3'
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:5.6.9
command: "elasticsearch -E node.name=fd-dev -E cluster.name=es_flockdata -E node.master=true -E discovery.type=single-node -E network.host=0.0.0.0 -E xpack.security.enabled=false"
ports:
- '9200:9200'
- '9300:9300'
volumes:
- fd-dev-es:/usr/share/elasticsearch/data
expose:
- 9200
- 9300
# kibana:
# image: docker.elastic.co/kibana/kibana:5.6.9
# expose:
# - 5601
# - 32776
# ports:
# - '5601:5601'
# - '32776:32776'
#
# environment:
# SERVER_NAME: kibana.localhost
# ELASTICSEARCH_URL: http://elasticsearch:9200
# XPACK_MONITORING_UI_CONTAINER_ELASTICSEARCH_ENABLED: "false"
rabbit:
image: rabbitmq:3-management
ports:
- '5672:5672'
- '15672:15672'
expose:
- 15682
- 5672
riak:
image: lapax/riak:latest
ports:
- '8087:8087'
- '8098:8098'
expose:
- 8098
environment:
storage_backend: leveldb
platform_data_dir: /data/riak
volumes:
- fd-dev-riak:/data/riak
volumes:
fd-dev-es: {}
fd-dev-riak: {}