Skip to content

Instantly share code, notes, and snippets.

@sled30
sled30 / docker-compose.yml
Created May 25, 2021 12:13 — forked from tsvayer/docker-compose.yml
Docker Compose Elasticsearch cluster example (with Kibana)
version: '3.1'
services:
elasticsearch:
image: elasticsearch
container_name: elasticsearch
environment:
- bootstrap.memory_lock=true
- ES_JAVA_OPTS=-Xms512m -Xmx512m
command:
- "-Etransport.host=0.0.0.0"