From 7218435b0ab16e62a6983bc998e6384041bdcc82 Mon Sep 17 00:00:00 2001 From: Ludovic Cartier Date: Thu, 4 Dec 2025 12:08:48 +0100 Subject: [PATCH] gitlab - add ulimit soft / hard to 65536 --- templates/compose/gitlab.yml.j2 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/templates/compose/gitlab.yml.j2 b/templates/compose/gitlab.yml.j2 index 01c58b9..ec9553a 100644 --- a/templates/compose/gitlab.yml.j2 +++ b/templates/compose/gitlab.yml.j2 @@ -37,6 +37,10 @@ services: image: {{ gitlab_image|default("gitlab/gitlab-ce") }}:{{ gitlab_version|default("latest") }} container_name: gitlab restart: 'unless-stopped' + ulimits: + nofile: + soft: 65536 + hard: 65536 labels: {% if gitlab_through_traefik is defined and gitlab_through_traefik %} traefik.enable: "true"