From d77f38b405f78df57b4af909dcade88ac79da487 Mon Sep 17 00:00:00 2001 From: Pierre Tellier Date: Wed, 12 Feb 2025 12:24:15 +0100 Subject: [PATCH] fix: removed exposed ports on the frontend --- config/prod.docker-compose.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/config/prod.docker-compose.yaml b/config/prod.docker-compose.yaml index 51f2d76..496efb3 100644 --- a/config/prod.docker-compose.yaml +++ b/config/prod.docker-compose.yaml @@ -30,10 +30,10 @@ services: KC_BOOTSTRAP_ADMIN_USERNAME: ${KEYCLOAK_ADMIN} KC_BOOTSTRAP_ADMIN_PASSWORD: ${KEYCLOAK_ADMIN_PASSWORD} KC_LOG_LEVEL: info - command: ["start-dev", "--http-port", "7080", "--https-port", "7443", "--hostname", "${KEYCLOAK_HOSTNAME}"] - ports: - - "7080:7080" - - "7443:7443" + command: ["start-dev", "--http-port", "7080", "--https-port", "7443", "--hostname", "${KEYCLOAK_HOSTNAME}"] # TODO: remove start-dev + #ports: + # - "7080:7080" + # - "7443:7443" depends_on: - postgres @@ -50,6 +50,6 @@ services: context: ./MyINPulse-back/ dockerfile: Dockerfile container_name: MyINPulse-back - ports: - - "8081:8080" + #ports: + # - "8081:8080" \ No newline at end of file