7745f41f46a23dbc9693f7223c2d2cd58bae7595
[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     - /tmp/:/tmp/
23   ports:
24     - "8888:5000"
25   privileged: true
26   environment:
27     - INSTALLER_IP=192.168.200.2
28     - INSTALLER_TYPE=compass
29
30 bottlenecks:
31   restart: always
32   build: bottlenecks/
33   volumes:
34     - /var/run/docker.sock:/var/run/docker.sock
35     - /tmp/:/tmp/
36   environment:
37     - INSTALLER_IP=192.168.200.2
38     - INSTALLER_TYPE=compass
39     - DEBUG=true