From bdeb7d654637535f46d4b4b8222b96f05528dd96 Mon Sep 17 00:00:00 2001 From: ecaiyanlinux Date: Mon, 12 Oct 2020 22:47:50 +0200 Subject: [PATCH] Update docker ports http port 8083 https port 8434 Update ports to keep consistance with file application.yaml 8081 & 8433 are actually occupied by PMS by default 8082 is occupied by control-panel by default ECS application.yaml exposes 8083 & 8434 Signed-off-by: ecaiyanlinux Change-Id: I796b76d81d5da8c598fb0f56c1bdcc5a446e06a8 Issue-ID: NONRTRIC-296 --- enrichment-coordinator-service/Dockerfile | 2 +- enrichment-coordinator-service/config/application.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/enrichment-coordinator-service/Dockerfile b/enrichment-coordinator-service/Dockerfile index 34799024..51d45b5d 100644 --- a/enrichment-coordinator-service/Dockerfile +++ b/enrichment-coordinator-service/Dockerfile @@ -25,7 +25,7 @@ WORKDIR /opt/app/enrichment-coordinator-service RUN mkdir -p /var/log/enrichment-coordinator-service RUN mkdir -p /opt/app/enrichment-coordinator-service/etc/cert/ -EXPOSE 8081 8433 +EXPOSE 8083 8434 ADD /config/application.yaml /opt/app/enrichment-coordinator-service/config/application.yaml ADD target/${JAR} /opt/app/enrichment-coordinator-service/enrichment-coordinator-service.jar diff --git a/enrichment-coordinator-service/config/application.yaml b/enrichment-coordinator-service/config/application.yaml index 8582bd99..e64db0c9 100644 --- a/enrichment-coordinator-service/config/application.yaml +++ b/enrichment-coordinator-service/config/application.yaml @@ -22,7 +22,7 @@ logging: name: /var/log/enrichment-coordinator-service/application.log server: port : 8434 - http-port: 8082 + http-port: 8083 ssl: key-store-type: JKS key-store-password: policy_agent -- 2.16.6