Bugfix of docker-compose file for privileged
[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   privileged: true
5   ports:
6     - "9200:9200"
7     - "9300:9300"
8
9 kibana:
10   build: kibana/
11   volumes:
12     - ./kibana/config/:/opt/kibana/config/
13   privileged: true
14   ports:
15     - "5601:5601"
16   links:
17     - elasticsearch
18
19 yardstick:
20   restart: always
21   image: opnfv/yardstick:latest
22   volumes:
23     - /var/run/docker.sock:/var/run/docker.sock
24     - /tmp/:/tmp/
25   ports:
26     - "8888:5000"
27   privileged: true
28   environment:
29     - INSTALLER_IP=192.168.200.2
30     - INSTALLER_TYPE=compass
31
32 bottlenecks:
33   restart: always
34   build: bottlenecks/
35   volumes:
36     - /var/run/docker.sock:/var/run/docker.sock
37     - /tmp/:/tmp/
38   privileged: true
39   environment:
40     - INSTALLER_IP=192.168.200.2
41     - INSTALLER_TYPE=compass
42     - DEBUG=true