Hi all,
I'm trying to get a Elastic cluster working with docker-compose. I'm running into some issues.
I would like to use volumes locally so i can edit config files and add new conf files for Logstash. Also i would like to know if i need to add all the config files into the directory or will docker automatically add these config files into the local folder?
I also tried to use volumes for Elastic but it didn't work.
Know i would like to know how my docker-compose should look like if i want to use Elastic, Logstash, Kibana with local volumes. (the logstash folder is getting added but not the files inside the logstash file.
My docker-compose file look as following:
version: '2.2'
services:
es01:
image: docker.elastic.co/elasticsearch/elasticsearch:7.7.1
container_name: es01
environment:
- node.name=es01
- cluster.name=es-docker-cluster
- discovery.seed_hosts=es02,es03
- cluster.initial_master_nodes=es01,es02,es03
- bootstrap.memory_lock=true
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
ulimits:
memlock:
soft: -1
hard: -1
volumes:
- data01:/usr/share/elasticsearch/data
ports:
- 9200:9200
networks:
- elastic
es02:
image: docker.elastic.co/elasticsearch/elasticsearch:7.7.1
container_name: es02
environment:
- node.name=es02
- cluster.name=es-docker-cluster
- discovery.seed_hosts=es01,es03
- cluster.initial_master_nodes=es01,es02,es03
- bootstrap.memory_lock=true
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
ulimits:
memlock:
soft: -1
hard: -1
volumes:
- data02:/usr/share/elasticsearch/data
networks:
- elastic
es03:
image: docker.elastic.co/elasticsearch/elasticsearch:7.7.1
container_name: es03
environment:
- node.name=es03
- cluster.name=es-docker-cluster
- discovery.seed_hosts=es01,es02
- cluster.initial_master_nodes=es01,es02,es03
- bootstrap.memory_lock=true
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
ulimits:
memlock:
soft: -1
hard: -1
volumes:
- data03:/usr/share/elasticsearch/data
networks:
- elastic
logstash:
image: docker.elastic.co/logstash/logstash:7.7.1
environment:
SERVER_NAME: metric.logstash
volumes:
- ./logstash:/etc/logstash:ro
ports:
- "5000:5000/tcp"
- "5000:5000/udp"
- "9600:9600"
environment:
LS_JAVA_OPTS: "-Xmx256m -Xms256m"
networks:
- elastic
depends_on:
- es01
kibana:
image: docker.elastic.co/kibana/kibana:7.7.1
environment:
SERVER_NAME: metric.kibana
ELASTICSEARCH_HOSTS: http://es01:9200
ports:
- 5601:5601
networks:
- elastic
volumes:
data01:
driver: local
data02:
driver: local
data03:
driver: local
logstash:
driver: local
networks:
elastic:
driver: bridge