From 5a19d64fd33d54a44c1c7083cfb4cc4b1822109e Mon Sep 17 00:00:00 2001 From: Oblitus Date: Sun, 12 Nov 2023 14:55:12 +0100 Subject: [PATCH] deploy v1.5.0 --- Dockerfile | 2 +- pom.xml | 2 +- src/main/resources/application.properties | 5 ++--- stack.yaml | 2 +- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9f0565a..3d3a511 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM openjdk:19-jdk-alpine LABEL maintainer="oblitus" EXPOSE 8080 -ARG JAR_FILE=target/service-app-1.4.5.jar +ARG JAR_FILE=target/service-app-1.5.0.jar ADD ${JAR_FILE} app.jar ENTRYPOINT ["java","-jar","/app.jar"] \ No newline at end of file diff --git a/pom.xml b/pom.xml index 717588d..31fea2d 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ com.oblitus service-app - 1.4.5 + 1.5.0 ServiceApp Service Track Backend diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index a019426..48f9eda 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -16,15 +16,14 @@ spring.boot.admin.client.url=http://adminServer:8081 #spring.datasource.url=jdbc:postgresql://localhost:5123/serviceApp #spring.datasource.username=serviceApp #spring.datasource.password=ServiceApp$$14 +#spring.jpa.hibernate.ddl-auto=create-drop +#spring.boot.admin.client.url=http://localhost:8081 # spring.jpa.show-sql=true spring.jpa.properties.hibernate.format_sql=true spring.jpa.properties.hibernate.show_sql = true logging.level.org.hibernate.SQL=DEBUG logging.level.org.hibernate.type.descriptor.sql=TRACE -#spring.jpa.hibernate.ddl-auto=create-drop -#spring.boot.admin.client.url=http://localhost:8081 - #Inf info.app.name = Service Track Api diff --git a/stack.yaml b/stack.yaml index 6274343..823c454 100644 --- a/stack.yaml +++ b/stack.yaml @@ -6,7 +6,7 @@ services: ports: - '8081:8081' serviceApp: - image: serviceapp-server:1.4.5 + image: serviceapp-server:1.5.0 restart: always ports: - '8080:8080'