gitlab - add ulimit soft / hard to 65536

This commit is contained in:
Ludovic Cartier
2025-12-04 12:08:48 +01:00
parent 9e913eda44
commit 7218435b0a

View File

@@ -37,6 +37,10 @@ services:
image: {{ gitlab_image|default("gitlab/gitlab-ce") }}:{{ gitlab_version|default("latest") }} image: {{ gitlab_image|default("gitlab/gitlab-ce") }}:{{ gitlab_version|default("latest") }}
container_name: gitlab container_name: gitlab
restart: 'unless-stopped' restart: 'unless-stopped'
ulimits:
nofile:
soft: 65536
hard: 65536
labels: labels:
{% if gitlab_through_traefik is defined and gitlab_through_traefik %} {% if gitlab_through_traefik is defined and gitlab_through_traefik %}
traefik.enable: "true" traefik.enable: "true"