集成xxl-job-admin控制台。

This commit is contained in:
sxq
2021-10-20 11:32:31 +08:00
parent 8b6f7b4e4c
commit 3eeeb27d70
164 changed files with 38579 additions and 2 deletions

View File

@ -0,0 +1,11 @@
FROM openjdk:8-jre-slim
MAINTAINER xuxueli
ENV PARAMS=""
ENV TZ=PRC
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
ADD target/xxl-job-admin-*.jar /app.jar
ENTRYPOINT ["sh","-c","java -jar $JAVA_OPTS /app.jar $PARAMS"]