Skip to content

Instantly share code, notes, and snippets.

@jinnabaalu
Created February 26, 2019 03:12
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 jinnabaalu/4ad8d3304f10c5b357bc4a6f68b63b9d to your computer and use it in GitHub Desktop.
Save jinnabaalu/4ad8d3304f10c5b357bc4a6f68b63b9d to your computer and use it in GitHub Desktop.
elasticsearch 6.6* simple compose
version: '3.3'
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:6.6.0
container_name: elasticsearch
ports:
- 9200:9200
- 9300:9300
environment:
ES_JAVA_OPTS: '-Xms256m -Xmx256m'
network.bind_host: 0.0.0.0
network.host: 0.0.0.0
discovery.type: single-node
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment