From d119b3ccb9e5775b87a3507b851dc4fe7b55d49a Mon Sep 17 00:00:00 2001 From: "david.alvarez" Date: Wed, 3 Jun 2026 21:29:36 +0200 Subject: [PATCH] Revert "fix: limit JVM heap to 128MB with G1GC periodic GC container" This reverts commit d652f3f94bfe34edbcf8d2b52248e3026f938986. --- Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 80f4286..8d49537 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,6 +25,4 @@ COPY --from=build /build/target/quarkus-app/ /app/ EXPOSE 8765 VOLUME /data ENV DOSTALGIA_DATA_DIR=/data -# Limit JVM heap — the app streams everything (upload/serve) so 128MB is plenty -# G1GC with periodic GC allows heap to shrink when idle -ENTRYPOINT ["java", "-Xmx128m", "-Xms64m", "-XX:+UseG1GC", "-XX:G1PeriodicGCInterval=30000", "-jar", "quarkus-run.jar"] +ENTRYPOINT ["java", "-jar", "quarkus-run.jar"]