0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-06 14:50:20 -05:00

🐛 Fix ulimits format in docker-compose.yaml

ulimit nofile format is expected to be int, not string

Signed-off-by: Ryan Breen <rbreen@getfastr.com>
This commit is contained in:
Ryan Breen 2024-11-28 12:45:45 -05:00 committed by GitHub
parent 8fa334265c
commit 0898c27539
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -125,5 +125,5 @@ services:
- "10636:10636"
ulimits:
nofile:
soft: "1024"
hard: "1024"
soft: 1024
hard: 1024