Skip to content

Instantly share code, notes, and snippets.

@duanebester
Created November 14, 2019 02:31
Show Gist options
  • Save duanebester/5bb7cca4f413d8c39ababa31163e2eb4 to your computer and use it in GitHub Desktop.
Save duanebester/5bb7cca4f413d8c39ababa31163e2eb4 to your computer and use it in GitHub Desktop.
Docker Compose Example
version: "2.2"
services:
es01:
image: docker.elastic.co/elasticsearch/elasticsearch:7.4.2
container_name: es01
environment:
- discovery.type=single-node
- "ES_JAVA_OPTS=-Xms2g -Xmx2g"
ulimits:
memlock:
soft: -1
hard: -1
ports:
- 9200:9200
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment