Skip to content

Commit

Permalink
Arreglados errores menores
Browse files Browse the repository at this point in the history
  • Loading branch information
UO289337 committed Apr 28, 2024
1 parent d5a0c02 commit 019be28
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
- run: npm --prefix users/userservice test -- --coverage
- run: npm --prefix gatewayservice test -- --coverage
- run: npm --prefix questiongenerator test -- --coverage
- run: npm --prefix gamehistoryservice test -- --coverage
- run: npm --prefix apis/alluserservice test -- --coverage
- run: npm --prefix apis/allquestionservice test -- --coverage
- run: npm --prefix perfilservice test -- --coverage
Expand Down
7 changes: 5 additions & 2 deletions gatewayservice/monitoring/grafana/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Usa la imagen base de Grafana desde Docker Hub
# Use the Grafana base image from Docker hub
FROM grafana/grafana

USER root
Expand All @@ -10,4 +10,7 @@ RUN chown -R nonroot:nonroot ./

COPY provisioning ./provisioning

USER nonroot
USER nonroot

# Expose the port that Grafana server listens on
EXPOSE 9191
7 changes: 5 additions & 2 deletions gatewayservice/monitoring/prometheus/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Usa la imagen base de Prometheus desde Docker Hub
# Use the Prometheus base image from Docker hub
FROM prom/prometheus

USER root
Expand All @@ -10,4 +10,7 @@ RUN chown -R nonroot:nonroot ./

COPY prometheus.yml ./

USER nonroot
USER nonroot

# Expose the port that Prometheus server listens on
EXPOSE 9090
2 changes: 1 addition & 1 deletion gatewayservice/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ info:
servers:
- url: http://localhost:8000
description: Development server
- url: http://${{secrets.DEPLOY_HOST}}:8000
- url: http://$REACT_APP_API_ORIGIN_ENDPOINT:8000
description: Production server
paths:
/adduser:
Expand Down

0 comments on commit 019be28

Please sign in to comment.