Skip to content

Instantly share code, notes, and snippets.

View Anthonymatta's full-sized avatar
🎯
Focusing

Anthonymatta

🎯
Focusing
View GitHub Profile
@Anthonymatta
Anthonymatta / docker-compose.yml
Created January 22, 2024 10:06 — forked from bschaatsbergen/docker-compose.yml
multi-node elasticsearch cluster
version: '2.2'
services:
es01:
image: docker.elastic.co/elasticsearch/elasticsearch:7.12.0
container_name: es01
environment:
- node.name=es01
- cluster.name=es-docker-cluster
- discovery.seed_hosts=es02,es03
- cluster.initial_master_nodes=es01,es02,es03