rewored monetix gateawy to port 8084

This commit is contained in:
Stephan D
2025-12-05 03:39:59 +01:00
parent fd07c10cba
commit 85fb567ed9
6 changed files with 8 additions and 8 deletions

View File

@@ -37,6 +37,6 @@ COPY api/gateway/mntx/config.yml /app/config.yml
COPY api/gateway/mntx/entrypoint.sh /app/entrypoint.sh
COPY --from=build /out/mntx-gateway /app/mntx-gateway
RUN chmod +x /app/entrypoint.sh
EXPOSE 50075 9404 8080
EXPOSE 50075 9404 8084
ENTRYPOINT ["/app/entrypoint.sh"]
CMD ["/app/mntx-gateway","--config.file","/app/config.yml"]

View File

@@ -29,7 +29,7 @@ services:
ports:
- "0.0.0.0:${MNTX_GATEWAY_GRPC_PORT:-50075}:50075"
- "0.0.0.0:${MNTX_GATEWAY_METRICS_PORT:-9404}:9404"
- "0.0.0.0:${MNTX_GATEWAY_HTTP_PORT:-8080}:8080"
- "0.0.0.0:${MNTX_GATEWAY_HTTP_PORT:-8084}:8084"
healthcheck:
test: ["CMD-SHELL","wget -qO- http://localhost:9404/health | grep -q '\"status\":\"ok\"'"]
interval: 30s