From a1a257836c3ed2d28ffa8b98c664a1fe95bcfe78 Mon Sep 17 00:00:00 2001 From: josedario87 Date: Fri, 31 Oct 2025 19:11:05 -0600 Subject: [PATCH] =?UTF-8?q?Fix:=20Aumentar=20l=C3=ADmite=20de=20archivos?= =?UTF-8?q?=20abiertos=20para=20MeshCentral?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- docker-compose.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index dd6f076..12b6ac9 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -27,6 +27,10 @@ services: - ALLOWFRAMING=false - COOKIEENCODING=hex - SESSIONRECORDINGCHUNKSIZE=1000000 + ulimits: + nofile: + soft: 65536 + hard: 65536 networks: - principal - traefik-network