mirror of
https://github.com/clearml/clearml-server
synced 2025-04-06 14:05:05 +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:
|
nofile:
|
||||||
soft: 65536
|
soft: 65536
|
||||||
hard: 65536
|
hard: 65536
|
||||||
|
deploy:
|
||||||
|
resources:
|
||||||
|
limits:
|
||||||
|
memory: 1gb
|
||||||
image: docker.elastic.co/elasticsearch/elasticsearch:7.17.18
|
image: docker.elastic.co/elasticsearch/elasticsearch:7.17.18
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
|
Loading…
Reference in New Issue
Block a user