Skip to content

Instantly share code, notes, and snippets.

View hygorxaraujo's full-sized avatar
🏠
Working from home

Hygor hygorxaraujo

🏠
Working from home
View GitHub Profile
@hygorxaraujo
hygorxaraujo / docker-compose.elk.yml
Created November 17, 2019 14:03
Sample docker-compose configuration for the ELK stack
version: "3"
services:
es01:
image: docker.elastic.co/elasticsearch/elasticsearch:7.4.2
container_name: es01
environment:
- node.name=es01
- cluster.name=es-docker-cluster
- discovery.seed_hosts=es02,es03
- cluster.initial_master_nodes=es01,es02,es03