mirror of
https://github.com/clearml/clearml-server
synced 2025-04-05 05:29:17 +00:00
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:
parent
83a0485518
commit
af787b5c44
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user