初始化

master
面包骑士 2024-07-29 10:13:16 +08:00
parent 22b0171ed9
commit 9eba9d0fa6
3 changed files with 14 additions and 0 deletions

12
DockerFile 100644
View File

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

View File

@ -9,6 +9,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>cloud-auth</artifactId> <artifactId>cloud-auth</artifactId>
<version>1.0.0</version>
<description> <description>
cloud-auth认证授权中心 cloud-auth认证授权中心

View File

@ -1,6 +1,7 @@
# Tomcat # Tomcat
server: server:
port: 9500 port: 9500
address: 0.0.0.0
# nacos线上地址 # nacos线上地址
nacos: nacos: