cluster.name:"docker-cluster"network.host:0.0.0.0#----------------------- BEGIN SECURITY AUTO CONFIGURATION -----------------------## The following settings, TLS certificates, and keys have been automatically# generated to configure Elasticsearch security features on 01-12-2022 04:37:03## --------------------------------------------------------------------------------# Enable security featuresxpack.security.enabled:falsexpack.security.enrollment.enabled:true# Enable encryption for HTTP API client connections, such as Kibana, Logstash, and Agentsxpack.security.http.ssl:enabled:falsekeystore.path:certs/http.p12# Enable encryption and mutual authentication between cluster nodesxpack.security.transport.ssl:enabled:falseverification_mode:certificatekeystore.path:certs/transport.p12truststore.path:certs/transport.p12#----------------------- END SECURITY AUTO CONFIGURATION -------------------------docker rm -f elasticsearchdocker run \-d \--name elasticsearch \-p 9200:9200 \-p 9300:9300 \-e ES_JAVA_POTS="-Xms256m -Xmx256m" \-e "discovery.type=single-node" \-v ~/docker/volumes/elasticsearch/logs:/usr/share/elasticsearch/logs \-v ~/docker/volumes/elasticsearch/plugins:/usr/share/elasticsearch/plugins \-v ~/docker/volumes/elasticsearch/config:/usr/share/elasticsearch/config \elasticsearch:8.5.1