1
0
Fork 0
mirror of synced 2024-06-27 18:40:52 +12:00

fix docker SHM limited to 64mb chrome crash

This commit is contained in:
Nick Sweeting 2020-07-21 23:39:21 -04:00
parent b9c03f5094
commit 8cb530230c

View file

@ -186,8 +186,16 @@ def chrome_args(**options) -> List[str]:
cmd_args += ('--headless',)
if not options['CHROME_SANDBOX']:
# dont use GPU or sandbox when running inside docker container
cmd_args += ('--no-sandbox', '--disable-gpu')
# assume this means we are running inside a docker container
# in docker, GPU support is limited, sandboxing is unecessary,
# and SHM is limited to 64MB by default (which is too low to be usable).
cmd_args += (
'--no-sandbox',
'--disable-gpu',
'--disable-dev-shm-usage',
'--disable-software-rasterizer',
)
if not options['CHECK_SSL_VALIDITY']:
cmd_args += ('--disable-web-security', '--ignore-certificate-errors')