-
-
Save quangson91/576c9d8f1c84ab2e35bf06601050bcdf to your computer and use it in GitHub Desktop.
spring boot debug in docker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# create spring boot container | |
docker run -d -e "JAVA_OPTS=-agentlib:jdwp=transport=dt_socket,address=5005,server=y,suspend=n" | |
-p 8081:8081 | |
-p 5005:5005 | |
--name <container name> <image name> | |
# create debug configuration in intellij | |
go Run/Debug Configurations | |
click + button | |
choose Remote | |
enter host and port | |
# finally execute new remote debug configuration | |
choose remote debug configuration that created above | |
click debug option | |
Thats it!!! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment