初始化

master
面包骑士 2024-07-29 16:43:06 +08:00
parent 27f93d5fdf
commit 443855d6a5
3 changed files with 19 additions and 3 deletions

14
DockerFile 100644
View File

@ -0,0 +1,14 @@
# |- home
# |- app.jar
# |- logs
FROM openjdk:17-jdk
WORKDIR /home
VOLUME ["/home/logs/cloud-gen"]
COPY ./target/cloud-gen.jar /home/app.jar
ENTRYPOINT ["java","-jar","/home/app.jar"]

View File

@ -9,10 +9,11 @@
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>cloud-modules-gen</artifactId>
<artifactId>cloud-gen</artifactId>
<version>1.0.0</version>
<description>
cloud-modules-gen代码生成
cloud-gen代码生成
</description>
<dependencies>

View File

@ -1,6 +1,6 @@
# Tomcat
server:
port: 9202
port: 10003
# nacos线上地址
nacos:
@ -30,6 +30,7 @@ spring:
password: ${nacos.password}
# 命名空间
namespace: ${nacos.namespace}
ip: 47.116.173.119
config:
# 服务注册地址
server-addr: ${nacos.addr}