b6e8b3d0a236de32e2a4be95a5f704a209d77bca
[bottlenecks.git] / docker / bottleneck-compose / docker-compose.yml
1 elasticsearch:
2   image: elasticsearch:2.4.0
3   command: elasticsearch -Des.network.host=0.0.0.0
4   ports:
5     - "9200:9200"
6     - "9300:9300"
7
8 kibana:
9   build: kibana/
10   volumes:
11     - ./kibana/config/:/opt/kibana/config/
12   ports:
13     - "5601:5601"
14   links:
15     - elasticsearch
16
17 yardstick:
18   restart: always
19   image: opnfv/yardstick:latest
20   volumes:
21     - /var/run/docker.sock:/var/run/docker.sock
22   ports:
23     - "8888:5000"
24
25 bottlenecks:
26   restart: always
27   build: bottlenecks/