Can't modify the display configuration in the docker image

Hi,

I have a problem with the default display configuration (1024x768x24) in the docker image of katalon.

So I tried to modify it by setting the display parameters in the docker run command as followed :

docker run **-e DISPLAY_CONFIGURATION=1920x1080x24 -e DISPLAY=:99** -t --rm -v "$(pwd)":/katalon/katalon/source -v "$(pwd)"/report:/katalon/katalon/report katalonstudio/katalon katalon-execute.sh -browserType="Chrome (headless)" -retry=0 -statusDelay=15 -executionProfile="quality-mkp" -testSuitePath="Test Suites/TS_postAnOffer"

But that did not work!! The display resolution is still 1024x768

Any idea ?
Have you tried to modify the display config ?

Thank you.

try XVFB_RESOLUTION

Would it just be -e XVFB_RESOLUTION=1920x1080x24? or would it be a --config value if you are using the Katalon Docker images?

use this docker run -e DISPLAY_CONFIGURATION=“1920X1080X24” -e DISPLAY=":99"

Sorry i know this is old thread. I just figured this out after a trying a lot of permutation and combination