From c053b23d90bbf3d1827d045fca12736224fc632c Mon Sep 17 00:00:00 2001 From: James Herr Date: Wed, 27 Nov 2024 12:22:48 -0600 Subject: [PATCH] Fixed typos --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c649125a0..4989cc6ce 100644 --- a/README.md +++ b/README.md @@ -157,12 +157,12 @@ the swarm parameters for the test and the local url where the app is running #### Attached JVM Config for IntelliJ -The project comes with an attached remote jvm configuration for debuging the container. +The project comes with an attached remote jvm configuration for debugging the container. If you check your remote JVM settings, under `Run/Edit Configurations`, you will see the `Debug TI`. If you want to add a new remote JVM configuration, follow the steps below, -under "**Docker Container Debugging Using Java Debug Wire Protocal**" +under "**Docker Container Debugging Using Java Debug Wire Protocol**" -#### Docker Container Debugging Using Java Debug Wire Protocal (JDWP) +#### Docker Container Debugging Using Java Debug Wire Protocol (JDWP) Go into the `Dockerfile` file and change `CMD ["java", "-jar", "app.jar"]` to `CMD ["java", "-agentlib:jdwp=transport=dt_socket,address=*:6006,server=y,suspend=n", "-jar", "app.jar"]`