docker-compose.yaml 412 B

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