From 400b3917c276e7cfc982d8120a90d7738d992afc Mon Sep 17 00:00:00 2001 From: jeongTaeGyu <jtg0528@ajou.ac.kr> Date: Fri, 21 Jul 2023 07:49:46 +0900 Subject: [PATCH] =?UTF-8?q?port=EB=B2=88=ED=98=B8=208098=EB=A1=9C=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- src/main/resources/application.properties | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6c42955..5dd8d5a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM openjdk:17 ARG JAR_FILE=target/myspring*.jar COPY ${JAR_FILE} app.jar -EXPOSE 8100 +EXPOSE 8098 ENTRYPOINT ["java","-jar","/app.jar"] diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 3b8f5d1..4be7ae8 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -1,5 +1,5 @@ -server.port = 8100 +server.port = 8098 spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver spring.datasource.url=jdbc:mysql://210.107.196.163:41398/webdev?serverTimezone=UTC spring.datasource.username=root -- GitLab