Skip to content

Commit ade2e8f

Browse files
authored
Increase docker memory limit (#12003)
This allows Markdoc to build.
1 parent b333b97 commit ade2e8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

readthedocs/settings/docker_compose.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class DockerBaseSettings(CommunityBaseSettings):
1414
RTD_DOCKER_COMPOSE = True
1515
RTD_DOCKER_COMPOSE_VOLUME = "community_build-user-builds"
1616
RTD_DOCKER_USER = f"{os.geteuid()}:{os.getegid()}"
17-
DOCKER_LIMITS = {"memory": "1g", "time": 900}
17+
DOCKER_LIMITS = {"memory": "2g", "time": 900}
1818

1919
PRODUCTION_DOMAIN = os.environ.get("RTD_PRODUCTION_DOMAIN", "devthedocs.org")
2020
PUBLIC_DOMAIN = os.environ.get("RTD_PUBLIC_DOMAIN", "devthedocs.org")

0 commit comments

Comments
 (0)