From e0f17cc7977e88c8930c2c762994225074430adc Mon Sep 17 00:00:00 2001 From: Eric Holscher <25510+ericholscher@users.noreply.github.com> Date: Thu, 21 Nov 2024 11:13:29 -0800 Subject: [PATCH] Increase default docker limits (#11788) I keep hitting memory limits locally. I wonder if we should just use the "Determine limits dynamically" in dev. I'm not sure why that isn't better than hard limits? --- readthedocs/settings/base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readthedocs/settings/base.py b/readthedocs/settings/base.py index 6fde3d02f53..9c3a7e12aac 100644 --- a/readthedocs/settings/base.py +++ b/readthedocs/settings/base.py @@ -636,8 +636,8 @@ def DOCKER_LIMITS(self): """ # Our normal default limits = { - "memory": "1g", - "time": 600, + "memory": "2g", + "time": 900, } # Only run on our servers