Cannot disable the debugger devtools

This issue has been tracked since 2022-09-20.

Following the documentation instructions here https://www.browserless.io/docs/docker#disabling-the-debugger, i have passed to docker image the environmental variable ENABLE_DEBUGGER=false, yet after the launch i still can access the devtools opening up the page on localhost:3000.

The docker command i run:
docker run -d -e "ENABLE_DEBUGGER=false" -p 3000:3000 browserless/chrome

andyMrtnzP wrote this answer on 2022-10-07

ENABLE_DEBUGGER sets the CDP debugger, the one that allows you to debug Puppeteer scripts in real time

image

To disable browserless' debugger, you have to disable as a feature DISABLED_FEATURES=["debugViewer"]:
docker run -d -e 'DISABLED_FEATURES=["debugViewer"]' -p 3000:3000 browserless/chrome

More Details About Repo
Owner Name browserless
Repo Name chrome
Full Name browserless/chrome
Language TypeScript
Created Date 2017-11-17
Updated Date 2023-03-22
Star Count 5309
Watcher Count 47
Fork Count 516
Issue Count 29

YOU MAY BE INTERESTED

Issue Title Created Date Updated Date