Is there any way to view script execution in Katalon docker

I am running my scripts on katalon docker. Is there any way to view script execution similar to Selenoid

use the docker commands:
docker ps will show you the running containers
docker logs --tail=100 -f containerIdorName will show you the output of what is running inside the container in ‘follow’ mode. press Ctrl+C to stop it.

Hi Bionel, Thanks for your reply !!! I was able to see the logs in the container but my question is how I can see the execution in GUI mode similar to Selenoid or SauceLabs ?