Fix: Aumentar límite de archivos abiertos para MeshCentral
All checks were successful
deploy-meshcentral / deploy (push) Successful in 15s

Agregar ulimits para resolver error EMFILE "too many open files"
- soft: 65536
- hard: 65536

MeshCentral requiere abrir muchos archivos simultáneamente para
file watchers, superando el límite por defecto de contenedores.
This commit is contained in:
2025-10-31 19:11:05 -06:00
parent bd510bf7a3
commit a1a257836c

View File

@@ -27,6 +27,10 @@ services:
- ALLOWFRAMING=false
- COOKIEENCODING=hex
- SESSIONRECORDINGCHUNKSIZE=1000000
ulimits:
nofile:
soft: 65536
hard: 65536
networks:
- principal
- traefik-network