Skip to content

Commit

Permalink
reorganized services port
Browse files Browse the repository at this point in the history
  • Loading branch information
MalpenZibo committed Jul 25, 2024
1 parent a9561da commit 895552a
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion packages/agreement-process/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@ RUN chmod -R 700 /app
USER app

WORKDIR /app/packages/agreement-process
EXPOSE 3000
EXPOSE 3100

CMD [ "node", "." ]
2 changes: 1 addition & 1 deletion packages/attribute-registry-process/.env
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
HOST=0.0.0.0
PORT=3000
PORT=3200
LOG_LEVEL=info

EVENTSTORE_DB_HOST=localhost
Expand Down
2 changes: 1 addition & 1 deletion packages/attribute-registry-process/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ FROM node:20.14.0-slim@sha256:5e8ac65a0231d76a388683d07ca36a9769ab019a85d85169fe
COPY --from=build /out /app

WORKDIR /app/packages/attribute-registry-process
EXPOSE 3000
EXPOSE 3200

CMD [ "node", "." ]
2 changes: 1 addition & 1 deletion packages/authorization-process/.env
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
HOST=0.0.0.0
PORT=3000
PORT=3300
LOG_LEVEL=info

EVENTSTORE_DB_HOST=localhost
Expand Down
2 changes: 1 addition & 1 deletion packages/authorization-process/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ FROM node:20.14.0-slim@sha256:5e8ac65a0231d76a388683d07ca36a9769ab019a85d85169fe
COPY --from=build /out /app

WORKDIR /app/packages/authorization-process
EXPOSE 3000
EXPOSE 3300

CMD [ "node", "." ]
8 changes: 4 additions & 4 deletions packages/bff/.env
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
HOST=0.0.0.0
PORT=3300
PORT=3600
LOG_LEVEL=info

WELL_KNOWN_URLS="http://127.0.0.1:4500/jwks.json"
ACCEPTED_AUDIENCES="dev.interop.pagopa.it/ui,refactor.dev.interop.pagopa.it/ui"

TENANT_PROCESS_URL="http://localhost:3100"
TENANT_PROCESS_URL="http://localhost:3500"
AGREEMENT_PROCESS_URL="http://localhost:3100"
CATALOG_PROCESS_URL="http://localhost:3000"
ATTRIBUTE_REGISTRY_PROCESS_URL="http://localhost:3000"
PURPOSE_PROCESS_URL="http://localhost:3000"
ATTRIBUTE_REGISTRY_PROCESS_URL="http://localhost:3200"
PURPOSE_PROCESS_URL="http://localhost:3400"

TENANT_ALLOWED_ORIGINS="IPA"

Expand Down
2 changes: 1 addition & 1 deletion packages/purpose-process/.env
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
HOST=0.0.0.0
PORT=3000
PORT=3400
LOG_LEVEL=info

EVENTSTORE_DB_HOST=localhost
Expand Down
2 changes: 1 addition & 1 deletion packages/purpose-process/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@ RUN chmod -R 700 /app
USER app

WORKDIR /app/packages/purpose-process
EXPOSE 3000
EXPOSE 3400

CMD [ "node", "." ]
2 changes: 1 addition & 1 deletion packages/tenant-process/.env
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
HOST=0.0.0.0
PORT=3100
PORT=3500
LOG_LEVEL=info

EVENTSTORE_DB_HOST=localhost
Expand Down
2 changes: 1 addition & 1 deletion packages/tenant-process/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ FROM node:20.14.0-slim@sha256:5e8ac65a0231d76a388683d07ca36a9769ab019a85d85169fe
COPY --from=build /out /app

WORKDIR /app/packages/tenant-process
EXPOSE 3000
EXPOSE 3500

CMD [ "node", "." ]

0 comments on commit 895552a

Please sign in to comment.