Skip to content

Instantly share code, notes, and snippets.

View rafaelcalhau's full-sized avatar
Get a coffee and let's code :)

Rafael Calhau rafaelcalhau

Get a coffee and let's code :)
  • Ilhéus, BA
View GitHub Profile
@rafaelcalhau
rafaelcalhau / elasticsearch-nodes-kibana-docker
Last active February 2, 2022 20:34
Docker compose file to build an environment with elasticsearch nodes and kibana
version: '2.2'
services:
es01:
image: docker.elastic.co/elasticsearch/elasticsearch:7.16.3
container_name: es01
environment:
- node.name=es01
- cluster.name=es-docker-cluster
- discovery.seed_hosts=es02
- cluster.initial_master_nodes=es01,es02