Merge pull request #10031 from saschaszott/patch-53

Allow remote debugging (replacing CATALINA_OPTS with JAVA_TOOL_OPTIONS)
This commit is contained in:
kshepherd
2025-01-29 16:52:21 +01:00
committed by GitHub

View File

@@ -68,7 +68,7 @@ RUN apt-get update \
EXPOSE 8080 8000 EXPOSE 8080 8000
# Give java extra memory (2GB) # Give java extra memory (2GB)
ENV JAVA_OPTS=-Xmx2000m ENV JAVA_OPTS=-Xmx2000m
# Set up debugging # enable JVM debugging via JDWP
ENV CATALINA_OPTS=-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=*:8000 ENV JAVA_TOOL_OPTIONS=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:8000
# On startup, run DSpace Runnable JAR # On startup, run DSpace Runnable JAR
ENTRYPOINT ["java", "-jar", "webapps/server-boot.jar", "--dspace.dir=$DSPACE_INSTALL"] ENTRYPOINT ["java", "-jar", "webapps/server-boot.jar", "--dspace.dir=$DSPACE_INSTALL"]