summaryrefslogtreecommitdiffstats
path: root/docker/bottleneck-compose/docker-compose.yml
blob: 7745f41f46a23dbc9693f7223c2d2cd58bae7595 (plain)
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
elasticsearch:
  image: elasticsearch:2.4.0
  command: elasticsearch -Des.network.host=0.0.0.0
  ports:
    - "9200:9200"
    - "9300:9300"

kibana:
  build: kibana/
  volumes:
    - ./kibana/config/:/opt/kibana/config/
  ports:
    - "5601:5601"
  links:
    - elasticsearch

yardstick:
  restart: always
  image: opnfv/yardstick:latest
  volumes:
    - /var/run/docker.sock:/var/run/docker.sock
    - /tmp/:/tmp/
  ports:
    - "8888:5000"
  privileged: true
  environment:
    - INSTALLER_IP=192.168.200.2
    - INSTALLER_TYPE=compass

bottlenecks:
  restart: always
  build: bottlenecks/
  volumes:
    - /var/run/docker.sock:/var/run/docker.sock
    - /tmp/:/tmp/
  environment:
    - INSTALLER_IP=192.168.200.2
    - INSTALLER_TYPE=compass
    - DEBUG=true