Fix: Change Quarkus HTTP port from 8085 to 8080 for lionsctl compatibility

This commit is contained in:
dahoud
2025-12-10 10:56:11 +00:00
parent 637f6de9d2
commit 5ba96ce33c

View File

@@ -9,7 +9,7 @@ ENV LANGUAGE='en_US:en'
# Configuration des variables d'environnement pour production
ENV QUARKUS_PROFILE=prod
ENV QUARKUS_HTTP_PORT=8085
ENV QUARKUS_HTTP_PORT=8080
ENV QUARKUS_HTTP_HOST=0.0.0.0
# Configuration Base de données
@@ -51,7 +51,7 @@ COPY --chown=appuser:appuser target/*-runner.jar /app/app.jar
USER appuser
# Exposer le port
EXPOSE 8085
EXPOSE 8080
# Variables JVM optimisées
ENV JAVA_OPTS="-Xmx1g -Xms512m \
@@ -71,4 +71,4 @@ ENTRYPOINT ["sh", "-c", "exec java $JAVA_OPTS -jar /app/app.jar"]
# Health check
HEALTHCHECK --interval=30s --timeout=10s --start-period=60s --retries=3 \
CMD curl -f http://localhost:8085/q/health/ready || exit 1
CMD curl -f http://localhost:8080/q/health/ready || exit 1