From 81d4849c093b1352e6a334447145f42fc4c0c9c9 Mon Sep 17 00:00:00 2001 From: Tobias Schneck Date: Mon, 4 Dec 2017 14:55:26 +0100 Subject: [PATCH] closes #53: add hint for chromium crashes with to small /dev/shm size --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 5c025497..ae12cfe1 100644 --- a/README.md +++ b/README.md @@ -117,6 +117,15 @@ Since version `1.2.0` it's possible to prevent unwanted control over VNC. Theref docker run -it -p 5901:5901 -p 6901:6901 -e VNC_VIEW_ONLY=true consol/centos-xfce-vnc +### 5) Known Issues + +#### 5.1) Chromium crashes with high VNC_RESOLUTION ([#53](https://github.com/ConSol/docker-headless-vnc-container/issues/53)) +If you open some graphic/work intensive websites in the Docker container (especially with high resolutions e.g. `1920x1080`) it can happen that Chromium crashes without any specific reason. The problem there is the too small `/dev/shm` size in the container. Currently there is no other way, as define this size on startup via `--shm-size` option, see [#53 - Solution](https://github.com/ConSol/docker-headless-vnc-container/issues/53#issuecomment-347265977): + + docker run --shm-size=256m -it -p 6901:6901 -e VNC_RESOLUTION=1920x1080 consol/centos-xfce-vnc chromium-browser http://map.norsecorp.com/ + +Thx @raghavkarol for the hint! + ## Contact For questions, professional support or maybe some hints, feel free to contact us via **[testautomatisierung@consol.de](mailto:testautomatisierung@consol.de)** or open an [issue](https://github.com/ConSol/docker-headless-vnc-container/issues/new).