From 88f882ac825a124a7e3594fbc7f4f837f6865bd1 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Thu, 15 May 2025 19:11:50 +0100 Subject: [PATCH] docs: Increase ulimit for Docker container Otherwise it dies during tests. Change-Id: Id0ca3ada1801b345ee5bcdbb164dd7fe1d9b24ad Signed-off-by: Stephen Finucane --- doc/source/contributor/running_tests.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/contributor/running_tests.rst b/doc/source/contributor/running_tests.rst index f51feab44..62566efe7 100644 --- a/doc/source/contributor/running_tests.rst +++ b/doc/source/contributor/running_tests.rst @@ -49,7 +49,7 @@ Following are some simple examples. .. code-block:: shell - docker run -p 27017:27017 docker.io/mongo:latest + docker run --ulimit nofile=1000000 -p 27017:27017 docker.io/mongo:latest To run the Python 3.12 tests: