diff --git a/service/src/Dockerfile b/service/Dockerfile similarity index 98% rename from service/src/Dockerfile rename to service/Dockerfile index b156483..9c617b7 100644 --- a/service/src/Dockerfile +++ b/service/Dockerfile @@ -25,7 +25,7 @@ VOLUME ["/www/root/server"] ENTRYPOINT ["java","-jar","/home/server/app.jar"] #暴露 1010 端口 -EXPOSE 1010 +EXPOSE 8080 # 生产环境 # mvn clean package -Pprod -DskipTests diff --git a/service/src/main/resources/application-prod.yml b/service/src/main/resources/application-prod.yml index 4ebaaa5..97512fa 100644 --- a/service/src/main/resources/application-prod.yml +++ b/service/src/main/resources/application-prod.yml @@ -2,6 +2,8 @@ # configuration: # map-underscore-to-camel-case: true # log-impl: org.apache.ibatis.logging.stdout.StdOutImpl # 查看日志 +server: + port: 8080 logging: level: diff --git a/service/src/main/resources/banner.txt b/service/src/main/resources/banner.txt index d964e56..e8d5472 100644 --- a/service/src/main/resources/banner.txt +++ b/service/src/main/resources/banner.txt @@ -1,6 +1,6 @@ -__________ ____. -\______ \__ __ ____ ____ ___.__. | |____ ___ _______ - | | _/ | \/ \ / < | | | \__ \\ \/ /\__ \ - | | \ | / | \ | \___ | /\__| |/ __ \\ / / __ \_ - |______ /____/|___| /___| / ____| \________(____ /\_/ (____ / - \/ \/ \/\/ \/ \/ \ No newline at end of file + _ _ +| |__ _ _ _ __ _ __ _ _ (_) __ ___ ____ _ +| '_ \| | | | '_ \| '_ \| | | | | |/ _` \ \ / / _` | +| |_) | |_| | | | | | | | |_| | | | (_| |\ V | (_| | +|_.__/ \__,_|_| |_|_| |_|\__, | _/ |\__,_| \_/ \__,_| + |___/ |__/ \ No newline at end of file