From 7075c4cd4f1dcc42d1c805e63311b2d8df7af2a6 Mon Sep 17 00:00:00 2001 From: "Andy() {/** ... */}" Date: Fri, 10 Nov 2017 02:26:49 +0800 Subject: [PATCH] docs(troubleshooting): fix typo (#1327) This patch fixes typo from `6MB` to `64MB` --- docs/troubleshooting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/troubleshooting.md b/docs/troubleshooting.md index 24bfc5a0..39661252 100644 --- a/docs/troubleshooting.md +++ b/docs/troubleshooting.md @@ -155,7 +155,7 @@ how to run this Dockerfile from a webserver running on App Engine Flex (Node). #### Tips -By default, Docker runs a container with a `/dev/shm` shared memory space 6MB. +By default, Docker runs a container with a `/dev/shm` shared memory space 64MB. This is [typically too small](https://github.com/c0b/chrome-in-docker/issues/1) for Chrome and will cause Chrome to crash when rendering large pages. To fix, run the container with `docker run --shm-size=1gb` to increase the size of `/dev/shm`. In the future,