Skip to content

Commit

Permalink
Increase docker memory limit (#12003)
Browse files Browse the repository at this point in the history
This allows Markdoc to build.
  • Loading branch information
ericholscher authored Feb 19, 2025
1 parent b333b97 commit ade2e8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion readthedocs/settings/docker_compose.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class DockerBaseSettings(CommunityBaseSettings):
RTD_DOCKER_COMPOSE = True
RTD_DOCKER_COMPOSE_VOLUME = "community_build-user-builds"
RTD_DOCKER_USER = f"{os.geteuid()}:{os.getegid()}"
DOCKER_LIMITS = {"memory": "1g", "time": 900}
DOCKER_LIMITS = {"memory": "2g", "time": 900}

PRODUCTION_DOMAIN = os.environ.get("RTD_PRODUCTION_DOMAIN", "devthedocs.org")
PUBLIC_DOMAIN = os.environ.get("RTD_PUBLIC_DOMAIN", "devthedocs.org")
Expand Down

0 comments on commit ade2e8f

Please sign in to comment.