Fix elasticsearch memory requirements

Elasticsearch service silently terminates because of OOM.
Add memory requirements according to the official page
"Install Elasticsearch with Docker":
```docker run -m 1GB ...```
This commit is contained in:
romk 2024-10-04 22:31:08 +02:00
parent 83a0485518
commit af787b5c44

View File

@ -60,6 +60,10 @@ services:
nofile:
soft: 65536
hard: 65536
deploy:
resources:
limits:
memory: 1gb
image: docker.elastic.co/elasticsearch/elasticsearch:7.17.18
restart: unless-stopped
volumes: