We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ava tests run ok on windows & linux, but not ok inside docker.
according to elgalu/docker-selenium#20 (comment) , this is due to /dev/shm memory size too small.
$ df -h shm 64M 3.2M 61M 5% /dev/shm
it's only 64M
--shm-size
build
run
--privileged
mount /dev/shm -o remount,size=1g
-v /dev/shm:/dev/shm
The text was updated successfully, but these errors were encountered:
issue #27 increase --shm-size in docker
e312cc5
issue #27
77ec0d6
fixed.
Sorry, something went wrong.
No branches or pull requests
ava tests run ok on windows & linux, but not ok inside docker.
according to elgalu/docker-selenium#20 (comment) , this is due to /dev/shm memory size too small.
it's only 64M
Solution
--shm-size
param withbuild
&run
Addition of "--shm-size" to which size of /dev/shm is changed moby/moby#16168 (comment)--privileged
when run docker, thenmount /dev/shm -o remount,size=1g
bigger /dev/shm moby/moby#2606 (comment)-v /dev/shm:/dev/shm
when run docker. node-chome tab crash in docker only SeleniumHQ/docker-selenium#79 (comment)The text was updated successfully, but these errors were encountered: