Skip to content

Instantly share code, notes, and snippets.

@aviaryan
Created June 21, 2017 13:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aviaryan/0ad1cd612fdf42cc0f80d424c957ba8e to your computer and use it in GitHub Desktop.
Save aviaryan/0ad1cd612fdf42cc0f80d424c957ba8e to your computer and use it in GitHub Desktop.
Run ElasticSearch 6 without Xpack
docker run -tid --name appbase_elasticsearch -e ES_JAVA_OPTS='-Xms750m -Xmx750m' -e "xpack.security.enabled=false" \
    -e "xpack.graph.enabled=false" -e "xpack.ml.enabled=false" -e "xpack.monitoring.enabled=false" \
    -e "xpack.watcher.enabled=false" -p 9200:9200 docker.elastic.co/elasticsearch/elasticsearch:6.0.0-alpha2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment