You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
665 B

  1. ---
  2. ## Default Elasticsearch configuration from elasticsearch-docker.
  3. ## from https://github.com/elastic/elasticsearch-docker/blob/master/build/elasticsearch/elasticsearch.yml
  4. #
  5. cluster.name: "docker-cluster"
  6. network.host: 0.0.0.0
  7. # minimum_master_nodes need to be explicitly set when bound on a public IP
  8. # set to 1 to allow single node clusters
  9. # Details: https://github.com/elastic/elasticsearch/pull/17288
  10. discovery.zen.minimum_master_nodes: 1
  11. ## Use single node discovery in order to disable production mode and avoid bootstrap checks
  12. ## see https://www.elastic.co/guide/en/elasticsearch/reference/current/bootstrap-checks.html
  13. #
  14. discovery.type: single-node