X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=docker%2Fbottleneck-compose%2Fdocker-compose.yml;h=a0f3df4df83dd24139f5310e77e5f7c020fd80e4;hb=b26f701ab2327497b0e44f548ea18e24b1e6b0d9;hp=0b256b5b3b927c5d4ed51b2badd174466cf8ab52;hpb=484f9305389c72cd13aae83192a4ff1eac0d1652;p=bottlenecks.git diff --git a/docker/bottleneck-compose/docker-compose.yml b/docker/bottleneck-compose/docker-compose.yml index 0b256b5b..a0f3df4d 100644 --- a/docker/bottleneck-compose/docker-compose.yml +++ b/docker/bottleneck-compose/docker-compose.yml @@ -1,6 +1,7 @@ elasticsearch: image: elasticsearch:2.4.0 command: elasticsearch -Des.network.host=0.0.0.0 + privileged: true ports: - "9200:9200" - "9300:9300" @@ -9,6 +10,7 @@ kibana: build: kibana/ volumes: - ./kibana/config/:/opt/kibana/config/ + privileged: true ports: - "5601:5601" links: @@ -16,12 +18,29 @@ kibana: yardstick: restart: always - build: yardstick/ + image: opnfv/yardstick:latest volumes: - - /var/run/docker/sock:/var/run/docker/sock + - /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/ \ No newline at end of file + 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}