docker-compose.yaml 354 B

123456789101112131415
  1. # You need to run 'sysctl -w vm.max_map_count=262144' on the host machine
  2. elasticsearch5:
  3. image: elasticsearch:5
  4. command: elasticsearch
  5. ports:
  6. - "10200:9200"
  7. - "10300:9300"
  8. fake-elastic5-data:
  9. image: grafana/fake-data-gen
  10. network_mode: bridge
  11. environment:
  12. FD_DATASOURCE: elasticsearch
  13. FD_PORT: 10200