Revert "fix: limit JVM heap to 128MB with G1GC periodic GC container"
Build & Deploy / build-and-deploy (push) Successful in 12s

This reverts commit d652f3f94b.
This commit is contained in:
david.alvarez
2026-06-03 21:29:36 +02:00
parent d652f3f94b
commit d119b3ccb9
+1 -3
View File
@@ -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"]