mirror of
https://github.com/penpot/penpot.git
synced 2025-01-22 14:39:45 -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:
parent
8fa334265c
commit
0898c27539
1 changed files with 2 additions and 2 deletions
|
@ -125,5 +125,5 @@ services:
|
||||||
- "10636:10636"
|
- "10636:10636"
|
||||||
ulimits:
|
ulimits:
|
||||||
nofile:
|
nofile:
|
||||||
soft: "1024"
|
soft: 1024
|
||||||
hard: "1024"
|
hard: 1024
|
||||||
|
|
Loading…
Add table
Reference in a new issue