初始化
parent
dcfababc42
commit
c776963662
|
@ -0,0 +1,12 @@
|
|||
# |- home
|
||||
# |- app.jar
|
||||
# |- logs
|
||||
FROM openjdk:17-jdk
|
||||
|
||||
WORKDIR /home
|
||||
|
||||
VOLUME ["/home/logs/cloud-system"]
|
||||
|
||||
COPY ./target/cloud-system.jar /home/app.jar
|
||||
|
||||
ENTRYPOINT ["java","-jar","/home/app.jar"]
|
4
pom.xml
4
pom.xml
|
@ -9,10 +9,10 @@
|
|||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>cloud-modules-system</artifactId>
|
||||
<artifactId>cloud-system</artifactId>
|
||||
|
||||
<description>
|
||||
cloud-modules-system系统模块
|
||||
cloud-system系统模块
|
||||
</description>
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
# Tomcat
|
||||
server:
|
||||
port: 9701
|
||||
port: 10001
|
||||
address: 0.0.0.0
|
||||
|
||||
# nacos线上地址
|
||||
nacos:
|
||||
|
|
Loading…
Reference in New Issue