summaryrefslogtreecommitdiffstats
path: root/docker/bottleneck-compose/docker-compose.yml
diff options
context:
space:
mode:
Diffstat (limited to 'docker/bottleneck-compose/docker-compose.yml')
-rw-r--r--docker/bottleneck-compose/docker-compose.yml46
1 files changed, 0 insertions, 46 deletions
diff --git a/docker/bottleneck-compose/docker-compose.yml b/docker/bottleneck-compose/docker-compose.yml
deleted file mode 100644
index a0f3df4d..00000000
--- a/docker/bottleneck-compose/docker-compose.yml
+++ /dev/null
@@ -1,46 +0,0 @@
-elasticsearch:
- image: elasticsearch:2.4.0
- command: elasticsearch -Des.network.host=0.0.0.0
- privileged: true
- ports:
- - "9200:9200"
- - "9300:9300"
-
-kibana:
- build: kibana/
- volumes:
- - ./kibana/config/:/opt/kibana/config/
- privileged: true
- 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/
- privileged: true
- environment:
- - INSTALLER_IP=192.168.200.2
- - INSTALLER_TYPE=compass
- - DEBUG=true
- - NODE_NAME=${NODE_NAME}
- - DEPLOY_SCENARIO=${DEPLOY_SCENARIO}
- - BUILD_TAG=${BUILD_TAG}
- - BRANCH=${BRANCH}