You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm running in docker in AWS elastic beanstalk and can't use the --cap-add=SYS_ADMIN (or --priveleged) docker launch option that is required for the sandbox to work. So I need to disable the sandbox.
I'm trying to pass in the puppeteer launch option but it does not seem to use it. Tested with both the convert method directly and via createConverter.
This is what I get: [0627/060536.676927:FATAL:zygote_host_impl_linux.cc(117)] No usable sandbox! Update your kernel or see https://chromium.googlesource.com/chromium/src/+/main/docs/linux/suid_sandbox_development.md for more information on developing with the SUID sandbox. If you want to live dangerously and need an immediate workaround, you can try using --no-sandbox.
Or if I try to run as root user: [0627/061005.669057:ERROR:zygote_host_impl_linux.cc(90)] Running as root without --no-sandbox is not supported. See https://crbug.com/638180.
Am I using it wrong? I can't find any information of how to use --no-sandbox with this library.
The text was updated successfully, but these errors were encountered:
The {options} you pass in to convert() and createConverter() are being lodash.pick'd for a puppeteer element to determine what's passed on directly to launch(). So your example should work if you change it to:
I'm running in docker in AWS elastic beanstalk and can't use the --cap-add=SYS_ADMIN (or --priveleged) docker launch option that is required for the sandbox to work. So I need to disable the sandbox.
I'm trying to pass in the puppeteer launch option but it does not seem to use it. Tested with both the convert method directly and via createConverter.
This is what I get:
[0627/060536.676927:FATAL:zygote_host_impl_linux.cc(117)] No usable sandbox! Update your kernel or see https://chromium.googlesource.com/chromium/src/+/main/docs/linux/suid_sandbox_development.md for more information on developing with the SUID sandbox. If you want to live dangerously and need an immediate workaround, you can try using --no-sandbox.
Or if I try to run as root user:
[0627/061005.669057:ERROR:zygote_host_impl_linux.cc(90)] Running as root without --no-sandbox is not supported. See https://crbug.com/638180.
Am I using it wrong? I can't find any information of how to use --no-sandbox with this library.
The text was updated successfully, but these errors were encountered: