You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

24 lines
467 B

version: '3.6'
services:
elasticsearch:
build:
context: ./dockerfiles/elasticsearch
restart: on-failure
environment:
- discovery.type=single-node
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
ulimits:
memlock:
soft: -1
hard: -1
mem_limit: 2g
volumes:
- elastic:/usr/share/elasticsearch/data
expose:
- "9200"
- "9300"
# Must be copied into main docker-compose yml-file
volumes:
elastic: