docker-compose.yaml 395 B

123456789101112131415
  1. # You need to run 'sysctl -w vm.max_map_count=262144' on the host machine
  2. elasticsearch6:
  3. image: docker.elastic.co/elasticsearch/elasticsearch-oss:6.2.4
  4. command: elasticsearch
  5. ports:
  6. - "11200:9200"
  7. - "11300:9300"
  8. fake-elastic6-data:
  9. image: grafana/fake-data-gen
  10. network_mode: bridge
  11. environment:
  12. FD_DATASOURCE: elasticsearch6
  13. FD_PORT: 11200