diff options
Diffstat (limited to 'docker/bottleneck-compose/docker-compose.yml')
-rw-r--r-- | docker/bottleneck-compose/docker-compose.yml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/docker/bottleneck-compose/docker-compose.yml b/docker/bottleneck-compose/docker-compose.yml new file mode 100644 index 00000000..0b256b5b --- /dev/null +++ b/docker/bottleneck-compose/docker-compose.yml @@ -0,0 +1,27 @@ +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 + build: yardstick/ + volumes: + - /var/run/docker/sock:/var/run/docker/sock + ports: + - "8888:5000" + +bottlenecks: + restart: always + build: bottlenecks/
\ No newline at end of file |