初次提交代码

This commit is contained in:
2026-01-11 15:33:22 +08:00
commit 6603c6f4a1
455 changed files with 32175 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
FROM openjdk:8
MAINTAINER chenchunan@139.com
# 创建程序运行和日志目录
RUN mkdir -p /app
RUN mkdir -p /app/logs
WORKDIR /app
# 挂载日志运行目录
VOLUME /app/logs
ADD syslog-consumer-1.0.0.jar syslog-consumer.jar
EXPOSE 8089
CMD java -jar syslog-consumer.jar