How to turn on remote debug on app that run on a docker container? How to turn on remote debug on app that run on a docker container? docker docker

How to turn on remote debug on app that run on a docker container?


I found my mistake. I'm running my application on the docker container with a configuration for remote debug for java 8 instead of java 11.in that params need to be correct:

-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005

I forgot the * symbol in the address.