I run Chrome from xvfb on Debian 8. It works until I open a tab and try to load the content. The process dies silently ...
Fortunately, I got it to work smoothly on my local docker using docker run --shm-size=1G
.
There is a known bug in Chrome that causes it to crash when / dev / shm is too small.
I am deploying the Container engine and checking the OS specifications. The host OS has a solid 7G installed in / dev / shm, but the actual container is allocated only 64M. Chromatic failures.
How to set the size / dev / shm when using kubectl to deploy in a container?
source
share